]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/Firewall.pm
add ebtables dependency
[pve-firewall.git] / src / PVE / Firewall.pm
CommitLineData
b6360c3f
DM
1package PVE::Firewall;
2
3use warnings;
4use strict;
cbb5d6f3 5use POSIX;
b6360c3f 6use Data::Dumper;
09d5f68e 7use Digest::SHA;
6d959e3f 8use Socket qw(AF_INET6 inet_ntop inet_pton);
c8301d63 9use PVE::INotify;
7ca36671 10use PVE::Exception qw(raise raise_param_exc);
e74a87f5 11use PVE::JSONSchema qw(register_standard_option get_standard_option);
c8301d63 12use PVE::Cluster;
5f0a912c 13use PVE::ProcFSTools;
70e524eb 14use PVE::Tools qw($IPV4RE $IPV6RE);
2e1ae6b9 15use PVE::Network;
eedcb564 16use PVE::SafeSyslog;
6b9f68a2 17use File::Basename;
5e1267a5
DM
18use File::Path;
19use IO::File;
ecbea048 20use Net::IP;
1a301a8d 21use PVE::Tools qw(run_command lock_file dir_glob_foreach);
30c1ae52 22use Encode;
cfd7cd9c 23use Storable qw(dclone);
ecbea048 24
63c91681 25my $hostfw_conf_filename = "/etc/pve/local/host.fw";
21053409
DM
26my $pvefw_conf_dir = "/etc/pve/firewall";
27my $clusterfw_conf_filename = "$pvefw_conf_dir/cluster.fw";
fca39c2c 28
fdefeeab 29# dynamically include PVE::QemuServer and PVE::LXC
d9fee004
DM
30# to avoid dependency problems
31my $have_qemu_server;
32eval {
33 require PVE::QemuServer;
b5a16dd3 34 require PVE::QemuConfig;
d9fee004
DM
35 $have_qemu_server = 1;
36};
37
3b4882dc
AG
38my $have_lxc;
39eval {
40 require PVE::LXC;
41 $have_lxc = 1;
42};
43
44
259db1e6
DM
45my $pve_fw_status_dir = "/var/lib/pve-firewall";
46
47mkdir $pve_fw_status_dir; # make sure this exists
48
351052d1
DM
49my $security_group_name_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
50my $ipset_name_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
f9792937 51our $ip_alias_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
351052d1
DM
52
53my $max_alias_name_length = 64;
54my $max_ipset_name_length = 64;
5c53cde4 55my $max_group_name_length = 18;
351052d1 56
48e3963e
WB
57my $PROTOCOLS_WITH_PORTS = {
58 udp => 1, 17 => 1,
59 udplite => 1, 136 => 1,
60 tcp => 1, 6 => 1,
61 dccp => 1, 33 => 1,
62 sctp => 1, 132 => 1,
63};
64
ae029a88
DM
65PVE::JSONSchema::register_format('IPorCIDR', \&pve_verify_ip_or_cidr);
66sub pve_verify_ip_or_cidr {
009ee3ac
DM
67 my ($cidr, $noerr) = @_;
68
70e524eb 69 if ($cidr =~ m!^(?:$IPV6RE|$IPV4RE)(/(\d+))?$!) {
e34d0e58 70 return $cidr if Net::IP->new($cidr);
7c619bbb
DM
71 return undef if $noerr;
72 die Net::IP::Error() . "\n";
73 }
74 return undef if $noerr;
75 die "value does not look like a valid IP address or CIDR network\n";
76}
77
ae029a88
DM
78PVE::JSONSchema::register_format('IPorCIDRorAlias', \&pve_verify_ip_or_cidr_or_alias);
79sub pve_verify_ip_or_cidr_or_alias {
7c619bbb
DM
80 my ($cidr, $noerr) = @_;
81
82 return if $cidr =~ m/^(?:$ip_alias_pattern)$/;
83
ae029a88 84 return pve_verify_ip_or_cidr($cidr, $noerr);
009ee3ac
DM
85}
86
e74a87f5
DM
87PVE::JSONSchema::register_standard_option('ipset-name', {
88 description => "IP set name.",
89 type => 'string',
351052d1 90 pattern => $ipset_name_pattern,
387d0ffc 91 minLength => 2,
351052d1 92 maxLength => $max_ipset_name_length,
387d0ffc
DM
93});
94
81d574a7
DM
95PVE::JSONSchema::register_standard_option('pve-fw-alias', {
96 description => "Alias name.",
97 type => 'string',
351052d1 98 pattern => $ip_alias_pattern,
81d574a7 99 minLength => 2,
351052d1 100 maxLength => $max_alias_name_length,
81d574a7
DM
101});
102
6302c41f
DM
103PVE::JSONSchema::register_standard_option('pve-fw-loglevel' => {
104 description => "Log level.",
e34d0e58 105 type => 'string',
6302c41f
DM
106 enum => ['emerg', 'alert', 'crit', 'err', 'warning', 'notice', 'info', 'debug', 'nolog'],
107 optional => 1,
108});
109
387d0ffc
DM
110PVE::JSONSchema::register_standard_option('pve-security-group-name', {
111 description => "Security Group name.",
112 type => 'string',
44be8ceb 113 pattern => $security_group_name_pattern,
387d0ffc 114 minLength => 2,
351052d1 115 maxLength => $max_group_name_length,
e74a87f5 116});
009ee3ac 117
cbb5d6f3
DM
118my $feature_ipset_nomatch = 0;
119eval {
120 my (undef, undef, $release) = POSIX::uname();
121 if ($release =~ m/^(\d+)\.(\d+)\.\d+-/) {
122 my ($major, $minor) = ($1, $2);
123 $feature_ipset_nomatch = 1 if ($major > 3) ||
124 ($major == 3 && $minor >= 7);
125 }
126
127};
128
c8301d63
DM
129my $nodename = PVE::INotify::nodename();
130
06320eb0
DM
131my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
132
56f313f7 133my $default_log_level = 'nolog'; # avoid logs by default
2d404ffc
DM
134
135my $log_level_hash = {
136 debug => 7,
137 info => 6,
138 notice => 5,
139 warning => 4,
140 err => 3,
141 crit => 2,
142 alert => 1,
143 emerg => 0,
144};
145
044409e5
TW
146# %rule
147#
148# name => optional
30c390f9 149# enable => [0|1]
044409e5
TW
150# action =>
151# proto =>
30c390f9
TW
152# sport => port[,port[,port]].. or port:port
153# dport => port[,port[,port]].. or port:port
044409e5
TW
154# log => optional, loglevel
155# logmsg => optional, logmsg - overwrites default
30c390f9
TW
156# iface_in => incomin interface
157# iface_out => outgoing interface
044409e5
TW
158# match => optional, overwrites generation of match
159# target => optional, overwrites action
160
35d1d6da
DM
161# we need to overwrite some macros for ipv6
162my $pve_ipv6fw_macros = {
163 'Ping' => [
164 { action => 'PARAM', proto => 'icmpv6', dport => 'echo-request' },
165 ],
b3d75afb
WB
166 'NeighborDiscovery' => [
167 "IPv6 neighbor solicitation, neighbor and router advertisement",
c71cdd44 168 { action => 'PARAM', proto => 'icmpv6', dport => 'router-solicitation' },
b3d75afb
WB
169 { action => 'PARAM', proto => 'icmpv6', dport => 'router-advertisement' },
170 { action => 'PARAM', proto => 'icmpv6', dport => 'neighbor-solicitation' },
171 { action => 'PARAM', proto => 'icmpv6', dport => 'neighbor-advertisement' },
172 ],
a42e9763 173 'DHCPv6' => [
24dd51c2 174 "DHCPv6 traffic",
a42e9763
WB
175 { action => 'PARAM', proto => 'udp', dport => '546:547', sport => '546:547' },
176 ],
35d1d6da
DM
177 'Trcrt' => [
178 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
179 { action => 'PARAM', proto => 'icmpv6', dport => 'echo-request' },
180 ],
181 };
182
857f62c8 183# imported/converted from: /usr/share/shorewall/macro.*
961b4928 184my $pve_fw_macros = {
857f62c8 185 'Amanda' => [
ebd54ae9 186 "Amanda Backup",
857f62c8
DM
187 { action => 'PARAM', proto => 'udp', dport => '10080' },
188 { action => 'PARAM', proto => 'tcp', dport => '10080' },
189 ],
190 'Auth' => [
ebd54ae9 191 "Auth (identd) traffic",
857f62c8
DM
192 { action => 'PARAM', proto => 'tcp', dport => '113' },
193 ],
194 'BGP' => [
ebd54ae9 195 "Border Gateway Protocol traffic",
857f62c8
DM
196 { action => 'PARAM', proto => 'tcp', dport => '179' },
197 ],
198 'BitTorrent' => [
ebd54ae9 199 "BitTorrent traffic for BitTorrent 3.1 and earlier",
961b4928 200 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
857f62c8
DM
201 { action => 'PARAM', proto => 'udp', dport => '6881' },
202 ],
203 'BitTorrent32' => [
ebd54ae9 204 "BitTorrent traffic for BitTorrent 3.2 and later",
857f62c8
DM
205 { action => 'PARAM', proto => 'tcp', dport => '6881:6999' },
206 { action => 'PARAM', proto => 'udp', dport => '6881' },
207 ],
06ba9c44
AG
208 'Ceph' => [
209 "Ceph Storage Cluster traffic (Ceph Monitors, OSD & MDS Deamons)",
210 { action => 'PARAM', proto => 'tcp', dport => '6789' },
211 { action => 'PARAM', proto => 'tcp', dport => '6800:7300' },
212 ],
857f62c8 213 'CVS' => [
ebd54ae9 214 "Concurrent Versions System pserver traffic",
857f62c8
DM
215 { action => 'PARAM', proto => 'tcp', dport => '2401' },
216 ],
217 'Citrix' => [
ebd54ae9 218 "Citrix/ICA traffic (ICA, ICA Browser, CGP)",
857f62c8
DM
219 { action => 'PARAM', proto => 'tcp', dport => '1494' },
220 { action => 'PARAM', proto => 'udp', dport => '1604' },
221 { action => 'PARAM', proto => 'tcp', dport => '2598' },
222 ],
223 'DAAP' => [
ebd54ae9 224 "Digital Audio Access Protocol traffic (iTunes, Rythmbox daemons)",
857f62c8
DM
225 { action => 'PARAM', proto => 'tcp', dport => '3689' },
226 { action => 'PARAM', proto => 'udp', dport => '3689' },
227 ],
228 'DCC' => [
ebd54ae9 229 "Distributed Checksum Clearinghouse spam filtering mechanism",
857f62c8
DM
230 { action => 'PARAM', proto => 'tcp', dport => '6277' },
231 ],
232 'DHCPfwd' => [
d2c3266d 233 "Forwarded DHCP traffic",
857f62c8 234 { action => 'PARAM', proto => 'udp', dport => '67:68', sport => '67:68' },
857f62c8
DM
235 ],
236 'DNS' => [
ebd54ae9 237 "Domain Name System traffic (upd and tcp)",
857f62c8
DM
238 { action => 'PARAM', proto => 'udp', dport => '53' },
239 { action => 'PARAM', proto => 'tcp', dport => '53' },
240 ],
241 'Distcc' => [
ebd54ae9 242 "Distributed Compiler service",
857f62c8
DM
243 { action => 'PARAM', proto => 'tcp', dport => '3632' },
244 ],
857f62c8 245 'FTP' => [
ebd54ae9 246 "File Transfer Protocol",
857f62c8
DM
247 { action => 'PARAM', proto => 'tcp', dport => '21' },
248 ],
249 'Finger' => [
ebd54ae9 250 "Finger protocol (RFC 742)",
857f62c8
DM
251 { action => 'PARAM', proto => 'tcp', dport => '79' },
252 ],
253 'GNUnet' => [
ebd54ae9 254 "GNUnet secure peer-to-peer networking traffic",
857f62c8
DM
255 { action => 'PARAM', proto => 'tcp', dport => '2086' },
256 { action => 'PARAM', proto => 'udp', dport => '2086' },
257 { action => 'PARAM', proto => 'tcp', dport => '1080' },
258 { action => 'PARAM', proto => 'udp', dport => '1080' },
259 ],
260 'GRE' => [
d2c3266d 261 "Generic Routing Encapsulation tunneling protocol",
857f62c8 262 { action => 'PARAM', proto => '47' },
857f62c8
DM
263 ],
264 'Git' => [
ebd54ae9 265 "Git distributed revision control traffic",
857f62c8
DM
266 { action => 'PARAM', proto => 'tcp', dport => '9418' },
267 ],
857f62c8 268 'HKP' => [
ebd54ae9 269 "OpenPGP HTTP keyserver protocol traffic",
857f62c8
DM
270 { action => 'PARAM', proto => 'tcp', dport => '11371' },
271 ],
272 'HTTP' => [
ebd54ae9 273 "Hypertext Transfer Protocol (WWW)",
961b4928
DM
274 { action => 'PARAM', proto => 'tcp', dport => '80' },
275 ],
857f62c8 276 'HTTPS' => [
ebd54ae9 277 "Hypertext Transfer Protocol (WWW) over SSL",
857f62c8
DM
278 { action => 'PARAM', proto => 'tcp', dport => '443' },
279 ],
280 'ICPV2' => [
ebd54ae9 281 "Internet Cache Protocol V2 (Squid) traffic",
857f62c8
DM
282 { action => 'PARAM', proto => 'udp', dport => '3130' },
283 ],
284 'ICQ' => [
ebd54ae9 285 "AOL Instant Messenger traffic",
857f62c8
DM
286 { action => 'PARAM', proto => 'tcp', dport => '5190' },
287 ],
288 'IMAP' => [
ebd54ae9 289 "Internet Message Access Protocol",
857f62c8
DM
290 { action => 'PARAM', proto => 'tcp', dport => '143' },
291 ],
292 'IMAPS' => [
ebd54ae9 293 "Internet Message Access Protocol over SSL",
857f62c8
DM
294 { action => 'PARAM', proto => 'tcp', dport => '993' },
295 ],
296 'IPIP' => [
d2c3266d 297 "IPIP capsulation traffic",
857f62c8 298 { action => 'PARAM', proto => '94' },
857f62c8 299 ],
857f62c8 300 'IPsec' => [
d2c3266d 301 "IPsec traffic",
857f62c8
DM
302 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
303 { action => 'PARAM', proto => '50' },
857f62c8
DM
304 ],
305 'IPsecah' => [
d2c3266d 306 "IPsec authentication (AH) traffic",
857f62c8
DM
307 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
308 { action => 'PARAM', proto => '51' },
857f62c8
DM
309 ],
310 'IPsecnat' => [
d2c3266d 311 "IPsec traffic and Nat-Traversal",
857f62c8
DM
312 { action => 'PARAM', proto => 'udp', dport => '500' },
313 { action => 'PARAM', proto => 'udp', dport => '4500' },
314 { action => 'PARAM', proto => '50' },
857f62c8
DM
315 ],
316 'IRC' => [
ebd54ae9 317 "Internet Relay Chat traffic",
857f62c8
DM
318 { action => 'PARAM', proto => 'tcp', dport => '6667' },
319 ],
857f62c8 320 'Jetdirect' => [
ebd54ae9 321 "HP Jetdirect printing",
857f62c8
DM
322 { action => 'PARAM', proto => 'tcp', dport => '9100' },
323 ],
324 'L2TP' => [
ebd54ae9 325 "Layer 2 Tunneling Protocol traffic",
857f62c8 326 { action => 'PARAM', proto => 'udp', dport => '1701' },
857f62c8
DM
327 ],
328 'LDAP' => [
ebd54ae9 329 "Lightweight Directory Access Protocol traffic",
857f62c8
DM
330 { action => 'PARAM', proto => 'tcp', dport => '389' },
331 ],
332 'LDAPS' => [
ebd54ae9 333 "Secure Lightweight Directory Access Protocol traffic",
857f62c8
DM
334 { action => 'PARAM', proto => 'tcp', dport => '636' },
335 ],
336 'MSNP' => [
ebd54ae9 337 "Microsoft Notification Protocol",
857f62c8
DM
338 { action => 'PARAM', proto => 'tcp', dport => '1863' },
339 ],
340 'MSSQL' => [
ebd54ae9 341 "Microsoft SQL Server",
857f62c8
DM
342 { action => 'PARAM', proto => 'tcp', dport => '1433' },
343 ],
344 'Mail' => [
ebd54ae9 345 "Mail traffic (SMTP, SMTPS, Submission)",
857f62c8
DM
346 { action => 'PARAM', proto => 'tcp', dport => '25' },
347 { action => 'PARAM', proto => 'tcp', dport => '465' },
348 { action => 'PARAM', proto => 'tcp', dport => '587' },
349 ],
7831e1e3
EK
350 'MDNS' => [
351 "Multicast DNS",
352 { action => 'PARAM', proto => 'udp', dport => '5353' },
353 ],
857f62c8 354 'Munin' => [
ebd54ae9 355 "Munin networked resource monitoring traffic",
857f62c8
DM
356 { action => 'PARAM', proto => 'tcp', dport => '4949' },
357 ],
358 'MySQL' => [
ebd54ae9 359 "MySQL server",
857f62c8
DM
360 { action => 'PARAM', proto => 'tcp', dport => '3306' },
361 ],
362 'NNTP' => [
ebd54ae9 363 "NNTP traffic (Usenet).",
857f62c8
DM
364 { action => 'PARAM', proto => 'tcp', dport => '119' },
365 ],
366 'NNTPS' => [
ebd54ae9 367 "Encrypted NNTP traffic (Usenet)",
857f62c8
DM
368 { action => 'PARAM', proto => 'tcp', dport => '563' },
369 ],
370 'NTP' => [
ebd54ae9 371 "Network Time Protocol (ntpd)",
857f62c8
DM
372 { action => 'PARAM', proto => 'udp', dport => '123' },
373 ],
857f62c8 374 'OSPF' => [
ebd54ae9 375 "OSPF multicast traffic",
857f62c8
DM
376 { action => 'PARAM', proto => '89' },
377 ],
378 'OpenVPN' => [
ebd54ae9 379 "OpenVPN traffic",
857f62c8
DM
380 { action => 'PARAM', proto => 'udp', dport => '1194' },
381 ],
382 'PCA' => [
ebd54ae9 383 "Symantec PCAnywere (tm)",
857f62c8
DM
384 { action => 'PARAM', proto => 'udp', dport => '5632' },
385 { action => 'PARAM', proto => 'tcp', dport => '5631' },
386 ],
387 'POP3' => [
ebd54ae9 388 "POP3 traffic",
857f62c8
DM
389 { action => 'PARAM', proto => 'tcp', dport => '110' },
390 ],
391 'POP3S' => [
ebd54ae9 392 "Encrypted POP3 traffic",
857f62c8
DM
393 { action => 'PARAM', proto => 'tcp', dport => '995' },
394 ],
395 'PPtP' => [
ebd54ae9 396 "Point-to-Point Tunneling Protocol",
857f62c8 397 { action => 'PARAM', proto => '47' },
857f62c8
DM
398 { action => 'PARAM', proto => 'tcp', dport => '1723' },
399 ],
400 'Ping' => [
ebd54ae9 401 "ICMP echo request",
269d4f13 402 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
403 ],
404 'PostgreSQL' => [
ebd54ae9 405 "PostgreSQL server",
857f62c8
DM
406 { action => 'PARAM', proto => 'tcp', dport => '5432' },
407 ],
408 'Printer' => [
ebd54ae9 409 "Line Printer protocol printing",
857f62c8
DM
410 { action => 'PARAM', proto => 'tcp', dport => '515' },
411 ],
412 'RDP' => [
ebd54ae9 413 "Microsoft Remote Desktop Protocol traffic",
857f62c8
DM
414 { action => 'PARAM', proto => 'tcp', dport => '3389' },
415 ],
d2c3266d 416 'RIP' => [
ebd54ae9 417 "Routing Information Protocol (bidirectional)",
857f62c8 418 { action => 'PARAM', proto => 'udp', dport => '520' },
857f62c8
DM
419 ],
420 'RNDC' => [
ebd54ae9 421 "BIND remote management protocol",
857f62c8
DM
422 { action => 'PARAM', proto => 'tcp', dport => '953' },
423 ],
424 'Razor' => [
ebd54ae9 425 "Razor Antispam System",
857f62c8
DM
426 { action => 'ACCEPT', proto => 'tcp', dport => '2703' },
427 ],
428 'Rdate' => [
ebd54ae9 429 "Remote time retrieval (rdate)",
857f62c8
DM
430 { action => 'PARAM', proto => 'tcp', dport => '37' },
431 ],
432 'Rsync' => [
ebd54ae9 433 "Rsync server",
857f62c8
DM
434 { action => 'PARAM', proto => 'tcp', dport => '873' },
435 ],
436 'SANE' => [
ebd54ae9 437 "SANE network scanning",
857f62c8
DM
438 { action => 'PARAM', proto => 'tcp', dport => '6566' },
439 ],
440 'SMB' => [
ebd54ae9 441 "Microsoft SMB traffic",
857f62c8
DM
442 { action => 'PARAM', proto => 'udp', dport => '135,445' },
443 { action => 'PARAM', proto => 'udp', dport => '137:139' },
444 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
445 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
446 ],
857f62c8 447 'SMBswat' => [
ebd54ae9 448 "Samba Web Administration Tool",
857f62c8
DM
449 { action => 'PARAM', proto => 'tcp', dport => '901' },
450 ],
451 'SMTP' => [
ebd54ae9 452 "Simple Mail Transfer Protocol",
857f62c8
DM
453 { action => 'PARAM', proto => 'tcp', dport => '25' },
454 ],
455 'SMTPS' => [
ebd54ae9 456 "Encrypted Simple Mail Transfer Protocol",
857f62c8
DM
457 { action => 'PARAM', proto => 'tcp', dport => '465' },
458 ],
459 'SNMP' => [
ebd54ae9 460 "Simple Network Management Protocol",
857f62c8
DM
461 { action => 'PARAM', proto => 'udp', dport => '161:162' },
462 { action => 'PARAM', proto => 'tcp', dport => '161' },
463 ],
464 'SPAMD' => [
ebd54ae9 465 "Spam Assassin SPAMD traffic",
857f62c8
DM
466 { action => 'PARAM', proto => 'tcp', dport => '783' },
467 ],
468 'SSH' => [
ebd54ae9 469 "Secure shell traffic",
857f62c8
DM
470 { action => 'PARAM', proto => 'tcp', dport => '22' },
471 ],
472 'SVN' => [
ebd54ae9 473 "Subversion server (svnserve)",
857f62c8
DM
474 { action => 'PARAM', proto => 'tcp', dport => '3690' },
475 ],
476 'SixXS' => [
ebd54ae9 477 "SixXS IPv6 Deployment and Tunnel Broker",
857f62c8
DM
478 { action => 'PARAM', proto => 'tcp', dport => '3874' },
479 { action => 'PARAM', proto => 'udp', dport => '3740' },
480 { action => 'PARAM', proto => '41' },
481 { action => 'PARAM', proto => 'udp', dport => '5072,8374' },
482 ],
483 'Squid' => [
ebd54ae9 484 "Squid web proxy traffic",
857f62c8
DM
485 { action => 'PARAM', proto => 'tcp', dport => '3128' },
486 ],
487 'Submission' => [
ebd54ae9 488 "Mail message submission traffic",
857f62c8
DM
489 { action => 'PARAM', proto => 'tcp', dport => '587' },
490 ],
491 'Syslog' => [
ebd54ae9 492 "Syslog protocol (RFC 5424) traffic",
857f62c8
DM
493 { action => 'PARAM', proto => 'udp', dport => '514' },
494 { action => 'PARAM', proto => 'tcp', dport => '514' },
495 ],
496 'TFTP' => [
ebd54ae9 497 "Trivial File Transfer Protocol traffic",
857f62c8
DM
498 { action => 'PARAM', proto => 'udp', dport => '69' },
499 ],
500 'Telnet' => [
ebd54ae9 501 "Telnet traffic",
857f62c8
DM
502 { action => 'PARAM', proto => 'tcp', dport => '23' },
503 ],
504 'Telnets' => [
ebd54ae9 505 "Telnet over SSL",
857f62c8
DM
506 { action => 'PARAM', proto => 'tcp', dport => '992' },
507 ],
508 'Time' => [
ebd54ae9 509 "RFC 868 Time protocol",
857f62c8
DM
510 { action => 'PARAM', proto => 'tcp', dport => '37' },
511 ],
512 'Trcrt' => [
ebd54ae9 513 "Traceroute (for up to 30 hops) traffic",
857f62c8 514 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
269d4f13 515 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
516 ],
517 'VNC' => [
93be4333
DM
518 "VNC traffic for VNC display's 0 - 99",
519 { action => 'PARAM', proto => 'tcp', dport => '5900:5999' },
857f62c8
DM
520 ],
521 'VNCL' => [
ebd54ae9 522 "VNC traffic from Vncservers to Vncviewers in listen mode",
857f62c8
DM
523 { action => 'PARAM', proto => 'tcp', dport => '5500' },
524 ],
525 'Web' => [
ebd54ae9 526 "WWW traffic (HTTP and HTTPS)",
857f62c8 527 { action => 'PARAM', proto => 'tcp', dport => '80' },
961b4928
DM
528 { action => 'PARAM', proto => 'tcp', dport => '443' },
529 ],
857f62c8 530 'Webcache' => [
ebd54ae9 531 "Web Cache/Proxy traffic (port 8080)",
857f62c8
DM
532 { action => 'PARAM', proto => 'tcp', dport => '8080' },
533 ],
534 'Webmin' => [
ebd54ae9 535 "Webmin traffic",
857f62c8
DM
536 { action => 'PARAM', proto => 'tcp', dport => '10000' },
537 ],
538 'Whois' => [
ebd54ae9 539 "Whois (nicname, RFC 3912) traffic",
857f62c8
DM
540 { action => 'PARAM', proto => 'tcp', dport => '43' },
541 ],
961b4928
DM
542};
543
544my $pve_fw_parsed_macros;
ebd54ae9 545my $pve_fw_macro_descr;
21a18e53 546my $pve_fw_macro_ipversion = {};
961b4928 547my $pve_fw_preferred_macro_names = {};
3a616aa0 548
fe3d79b4
WB
549my $FWACCEPTMARK_ON = "0x80000000/0x80000000";
550my $FWACCEPTMARK_OFF = "0x00000000/0x80000000";
551
5547adf7 552my $pve_std_chains = {};
cfd7cd9c
TW
553my $pve_std_chains_conf = {};
554$pve_std_chains_conf->{4} = {
d8f2505e 555 'PVEFW-SET-ACCEPT-MARK' => [
044409e5 556 { target => "-j MARK --set-mark $FWACCEPTMARK_ON" },
d8f2505e 557 ],
79929d9c
DM
558 'PVEFW-DropBroadcast' => [
559 # same as shorewall 'Broadcast'
560 # simply DROP BROADCAST/MULTICAST/ANYCAST
561 # we can use this to reduce logging
562 { action => 'DROP', dsttype => 'BROADCAST' },
563 { action => 'DROP', dsttype => 'MULTICAST' },
564 { action => 'DROP', dsttype => 'ANYCAST' },
cbb5d6f3 565 { action => 'DROP', dest => '224.0.0.0/4' },
79929d9c
DM
566 ],
567 'PVEFW-reject' => [
568 # same as shorewall 'reject'
569 { action => 'DROP', dsttype => 'BROADCAST' },
cbb5d6f3 570 { action => 'DROP', source => '224.0.0.0/4' },
79929d9c 571 { action => 'DROP', proto => 'icmp' },
044409e5
TW
572 { match => '-p tcp', target => '-j REJECT --reject-with tcp-reset' },
573 { match => '-p udp', target => '-j REJECT --reject-with icmp-port-unreachable' },
574 { match => '-p icmp', target => '-j REJECT --reject-with icmp-host-unreachable' },
575 { target => '-j REJECT --reject-with icmp-host-prohibited' },
79929d9c
DM
576 ],
577 'PVEFW-Drop' => [
cbb5d6f3 578 # same as shorewall 'Drop', which is equal to DROP,
79929d9c
DM
579 # but REJECT/DROP some packages to reduce logging,
580 # and ACCEPT critical ICMP types
581 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
582 # we are not interested in BROADCAST/MULTICAST/ANYCAST
583 { action => 'PVEFW-DropBroadcast' },
584 # ACCEPT critical ICMP types
585 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
586 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
587 # Drop packets with INVALID state
044409e5 588 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
79929d9c 589 # Drop Microsoft SMB noise
e4882cff
TW
590 { action => 'DROP', proto => 'udp', dport => '135,445' },
591 { action => 'DROP', proto => 'udp', dport => '137:139' },
79929d9c 592 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
e4882cff 593 { action => 'DROP', proto => 'tcp', dport => '135,139,445' },
79929d9c
DM
594 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
595 # Drop new/NotSyn traffic so that it doesn't get logged
044409e5 596 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
79929d9c
DM
597 # Drop DNS replies
598 { action => 'DROP', proto => 'udp', sport => 53 },
599 ],
600 'PVEFW-Reject' => [
cbb5d6f3 601 # same as shorewall 'Reject', which is equal to Reject,
79929d9c
DM
602 # but REJECT/DROP some packages to reduce logging,
603 # and ACCEPT critical ICMP types
604 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
605 # we are not interested in BROADCAST/MULTICAST/ANYCAST
606 { action => 'PVEFW-DropBroadcast' },
607 # ACCEPT critical ICMP types
608 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
609 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
610 # Drop packets with INVALID state
044409e5 611 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
79929d9c 612 # Drop Microsoft SMB noise
e4882cff 613 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445' },
79929d9c
DM
614 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139'},
615 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
e4882cff 616 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445' },
79929d9c
DM
617 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
618 # Drop new/NotSyn traffic so that it doesn't get logged
044409e5 619 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
79929d9c
DM
620 # Drop DNS replies
621 { action => 'DROP', proto => 'udp', sport => 53 },
622 ],
d86659ef
DM
623 'PVEFW-tcpflags' => [
624 # same as shorewall tcpflags action.
625 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
044409e5
TW
626 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG', target => '-g PVEFW-logflags' },
627 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE', target => '-g PVEFW-logflags' },
628 { match => '-p tcp -m tcp --tcp-flags SYN,RST SYN,RST', target => '-g PVEFW-logflags' },
629 { match => '-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN', target => '-g PVEFW-logflags' },
630 { match => '-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN', target => '-g PVEFW-logflags' },
d86659ef 631 ],
bee633ab
DM
632 'PVEFW-smurfs' => [
633 # same as shorewall smurfs action
634 # Filter packets for smurfs (packets with a broadcast address as the source).
044409e5
TW
635 { match => '-s 0.0.0.0/32', target => '-j RETURN' }, # allow DHCP
636 { match => '-m addrtype --src-type BROADCAST', target => '-g PVEFW-smurflog' },
637 { match => '-s 224.0.0.0/4', target => '-g PVEFW-smurflog' },
638 ],
639 'PVEFW-smurflog' => [
640 { action => 'DROP', logmsg => 'DROP: ' },
641 ],
642 'PVEFW-logflags' => [
643 { action => 'DROP', logmsg => 'DROP: ' },
bee633ab 644 ],
d8f2505e
DM
645};
646
cfd7cd9c 647$pve_std_chains_conf->{6} = {
47a79ff2 648 'PVEFW-SET-ACCEPT-MARK' => [
044409e5 649 { target => "-j MARK --set-mark $FWACCEPTMARK_ON" },
47a79ff2
AD
650 ],
651 'PVEFW-DropBroadcast' => [
044409e5
TW
652 # same as shorewall 'Broadcast'
653 # simply DROP BROADCAST/MULTICAST/ANYCAST
654 # we can use this to reduce logging
655 #{ action => 'DROP', dsttype => 'BROADCAST' }, #no broadcast in ipv6
649cd835
DM
656 # ipv6 addrtype does not work with kernel 2.6.32
657 #{ action => 'DROP', dsttype => 'MULTICAST' },
044409e5
TW
658 #{ action => 'DROP', dsttype => 'ANYCAST' },
659 { action => 'DROP', dest => 'ff00::/8' },
660 #{ action => 'DROP', dest => '224.0.0.0/4' },
47a79ff2
AD
661 ],
662 'PVEFW-reject' => [
044409e5
TW
663 # same as shorewall 'reject'
664 #{ action => 'DROP', dsttype => 'BROADCAST' },
665 #{ action => 'DROP', source => '224.0.0.0/4' },
649cd835 666 { action => 'DROP', proto => 'icmpv6' },
044409e5
TW
667 { match => '-p tcp', target => '-j REJECT --reject-with tcp-reset' },
668 #"-p udp -j REJECT --reject-with icmp-port-unreachable",
669 #"-p icmp -j REJECT --reject-with icmp-host-unreachable",
670 #"-j REJECT --reject-with icmp-host-prohibited",
47a79ff2
AD
671 ],
672 'PVEFW-Drop' => [
044409e5
TW
673 # same as shorewall 'Drop', which is equal to DROP,
674 # but REJECT/DROP some packages to reduce logging,
675 # and ACCEPT critical ICMP types
649cd835 676 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
044409e5
TW
677 # we are not interested in BROADCAST/MULTICAST/ANYCAST
678 { action => 'PVEFW-DropBroadcast' },
679 # ACCEPT critical ICMP types
680 { action => 'ACCEPT', proto => 'icmpv6', dport => 'destination-unreachable' },
681 { action => 'ACCEPT', proto => 'icmpv6', dport => 'time-exceeded' },
682 { action => 'ACCEPT', proto => 'icmpv6', dport => 'packet-too-big' },
683 # Drop packets with INVALID state
684 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
685 # Drop Microsoft SMB noise
e4882cff 686 { action => 'DROP', proto => 'udp', dport => '135,445' },
649cd835
DM
687 { action => 'DROP', proto => 'udp', dport => '137:139'},
688 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
e4882cff 689 { action => 'DROP', proto => 'tcp', dport => '135,139,445' },
649cd835 690 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
044409e5
TW
691 # Drop new/NotSyn traffic so that it doesn't get logged
692 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
693 # Drop DNS replies
649cd835 694 { action => 'DROP', proto => 'udp', sport => 53 },
47a79ff2
AD
695 ],
696 'PVEFW-Reject' => [
044409e5
TW
697 # same as shorewall 'Reject', which is equal to Reject,
698 # but REJECT/DROP some packages to reduce logging,
699 # and ACCEPT critical ICMP types
700 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
701 # we are not interested in BROADCAST/MULTICAST/ANYCAST
702 { action => 'PVEFW-DropBroadcast' },
703 # ACCEPT critical ICMP types
704 { action => 'ACCEPT', proto => 'icmpv6', dport => 'destination-unreachable' },
705 { action => 'ACCEPT', proto => 'icmpv6', dport => 'time-exceeded' },
706 { action => 'ACCEPT', proto => 'icmpv6', dport => 'packet-too-big' },
707 # Drop packets with INVALID state
708 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
709 # Drop Microsoft SMB noise
e4882cff
TW
710 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445' },
711 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139' },
044409e5 712 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
e4882cff 713 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445' },
044409e5
TW
714 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
715 # Drop new/NotSyn traffic so that it doesn't get logged
716 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
717 # Drop DNS replies
718 { action => 'DROP', proto => 'udp', sport => 53 },
47a79ff2
AD
719 ],
720 'PVEFW-tcpflags' => [
044409e5
TW
721 # same as shorewall tcpflags action.
722 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
723 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG', target => '-g PVEFW-logflags' },
724 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE', target => '-g PVEFW-logflags' },
725 { match => '-p tcp -m tcp --tcp-flags SYN,RST SYN,RST', target => '-g PVEFW-logflags' },
726 { match => '-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN', target => '-g PVEFW-logflags' },
727 { match => '-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN', target => '-g PVEFW-logflags' },
728 ],
729 'PVEFW-logflags' => [
730 { action => 'DROP', logmsg => 'DROP: ' },
47a79ff2 731 ],
47a79ff2
AD
732};
733
4b586518
DM
734# iptables -p icmp -h
735my $icmp_type_names = {
736 any => 1,
737 'echo-reply' => 1,
738 'destination-unreachable' => 1,
739 'network-unreachable' => 1,
740 'host-unreachable' => 1,
741 'protocol-unreachable' => 1,
742 'port-unreachable' => 1,
743 'fragmentation-needed' => 1,
744 'source-route-failed' => 1,
745 'network-unknown' => 1,
746 'host-unknown' => 1,
747 'network-prohibited' => 1,
748 'host-prohibited' => 1,
749 'TOS-network-unreachable' => 1,
750 'TOS-host-unreachable' => 1,
751 'communication-prohibited' => 1,
752 'host-precedence-violation' => 1,
753 'precedence-cutoff' => 1,
754 'source-quench' => 1,
755 'redirect' => 1,
756 'network-redirect' => 1,
757 'host-redirect' => 1,
758 'TOS-network-redirect' => 1,
759 'TOS-host-redirect' => 1,
760 'echo-request' => 1,
761 'router-advertisement' => 1,
762 'router-solicitation' => 1,
763 'time-exceeded' => 1,
764 'ttl-zero-during-transit' => 1,
765 'ttl-zero-during-reassembly' => 1,
766 'parameter-problem' => 1,
767 'ip-header-bad' => 1,
768 'required-option-missing' => 1,
769 'timestamp-request' => 1,
770 'timestamp-reply' => 1,
771 'address-mask-request' => 1,
772 'address-mask-reply' => 1,
773};
774
041b9277
DM
775# ip6tables -p icmpv6 -h
776
777my $icmpv6_type_names = {
778 'any' => 1,
779 'destination-unreachable' => 1,
780 'no-route' => 1,
781 'communication-prohibited' => 1,
782 'address-unreachable' => 1,
783 'port-unreachable' => 1,
784 'packet-too-big' => 1,
785 'time-exceeded' => 1,
786 'ttl-zero-during-transit' => 1,
787 'ttl-zero-during-reassembly' => 1,
788 'parameter-problem' => 1,
789 'bad-header' => 1,
790 'unknown-header-type' => 1,
791 'unknown-option' => 1,
792 'echo-request' => 1,
793 'echo-reply' => 1,
794 'router-solicitation' => 1,
795 'router-advertisement' => 1,
593604cc 796 'neighbor-solicitation' => 1,
041b9277 797 'neighbour-solicitation' => 1,
593604cc 798 'neighbor-advertisement' => 1,
041b9277
DM
799 'neighbour-advertisement' => 1,
800 'redirect' => 1,
801};
802
54cd19a8 803sub init_firewall_macros {
6158271d 804
961b4928 805 $pve_fw_parsed_macros = {};
9aab3127 806
21a18e53
WB
807 my $parse = sub {
808 my ($k, $macro) = @_;
e5076eee 809 my $lc_name = lc($k);
21a18e53
WB
810 $pve_fw_macro_ipversion->{$k} = 0;
811 while (!ref($macro->[0])) {
812 my $desc = shift @$macro;
813 if ($desc eq 'ipv4only') {
814 $pve_fw_macro_ipversion->{$k} = 4;
815 } elsif ($desc eq 'ipv6only') {
816 $pve_fw_macro_ipversion->{$k} = 6;
817 } else {
818 $pve_fw_macro_descr->{$k} = $desc;
819 }
ebd54ae9 820 }
e5076eee
DM
821 $pve_fw_preferred_macro_names->{$lc_name} = $k;
822 $pve_fw_parsed_macros->{$k} = $macro;
21a18e53
WB
823 };
824
825 foreach my $k (keys %$pve_fw_macros) {
826 &$parse($k, $pve_fw_macros->{$k});
827 }
828
829 foreach my $k (keys %$pve_ipv6fw_macros) {
830 next if $pve_fw_parsed_macros->{$k};
831 &$parse($k, $pve_ipv6fw_macros->{$k});
832 $pve_fw_macro_ipversion->{$k} = 6;
961b4928 833 }
9aab3127
DM
834}
835
54cd19a8
DM
836init_firewall_macros();
837
ebd54ae9
DM
838sub get_macros {
839 return wantarray ? ($pve_fw_parsed_macros, $pve_fw_macro_descr): $pve_fw_parsed_macros;
840}
841
fcba0beb
DM
842my $etc_services;
843
844sub get_etc_services {
845
846 return $etc_services if $etc_services;
847
848 my $filename = "/etc/services";
849
850 my $fh = IO::File->new($filename, O_RDONLY);
851 if (!$fh) {
852 warn "unable to read '$filename' - $!\n";
853 return {};
854 }
855
856 my $services = {};
857
858 while (my $line = <$fh>) {
859 chomp ($line);
860 next if $line =~m/^#/;
861 next if ($line =~m/^\s*$/);
862
d50f24ea 863 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp|sctp).*$!) {
fcba0beb 864 $services->{byid}->{$2}->{name} = $1;
35b66e9d 865 $services->{byid}->{$2}->{port} = $2;
fcba0beb
DM
866 $services->{byid}->{$2}->{$3} = 1;
867 $services->{byname}->{$1} = $services->{byid}->{$2};
868 }
869 }
870
871 close($fh);
872
6158271d
DM
873 $etc_services = $services;
874
3a616aa0 875
fcba0beb
DM
876 return $etc_services;
877}
878
58bc569d
WB
879sub parse_protocol_file {
880 my ($filename) = @_;
fcba0beb
DM
881
882 my $fh = IO::File->new($filename, O_RDONLY);
883 if (!$fh) {
884 warn "unable to read '$filename' - $!\n";
885 return {};
886 }
887
888 my $protocols = {};
889
890 while (my $line = <$fh>) {
891 chomp ($line);
892 next if $line =~m/^#/;
893 next if ($line =~m/^\s*$/);
894
d6dd6e96 895 if ($line =~ m!^(\S+)\s+(\d+)(?:\s+.*)?$!) {
fcba0beb
DM
896 $protocols->{byid}->{$2}->{name} = $1;
897 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
898 }
899 }
900
901 close($fh);
902
58bc569d
WB
903 return $protocols;
904}
905
906my $etc_protocols;
907
908sub get_etc_protocols {
909 return $etc_protocols if $etc_protocols;
910
911 my $protocols = parse_protocol_file('/etc/protocols');
912
041b9277
DM
913 # add special case for ICMP v6
914 $protocols->{byid}->{icmpv6}->{name} = "icmpv6";
915 $protocols->{byname}->{icmpv6} = $protocols->{byid}->{icmpv6};
916
fcba0beb
DM
917 $etc_protocols = $protocols;
918
919 return $etc_protocols;
920}
921
b452ea10
WB
922my $etc_ethertypes;
923
924sub get_etc_ethertypes {
925 $etc_ethertypes = parse_protocol_file('/etc/ethertypes')
926 if !$etc_ethertypes;
927 return $etc_ethertypes;
928}
929
525778d7 930my $__local_network;
93be4333 931
525778d7 932sub local_network {
ac633d30 933 my ($new_value) = @_;
93be4333 934
525778d7 935 $__local_network = $new_value if defined($new_value);
ac633d30 936
525778d7 937 return $__local_network if defined($__local_network);
93be4333
DM
938
939 eval {
940 my $nodename = PVE::INotify::nodename();
941
942 my $ip = PVE::Cluster::remote_node_ip($nodename);
943
944 my $testip = Net::IP->new($ip);
bfc488f6 945
5dc356af
WB
946 my $isv6 = $testip->version == 6;
947 my $routes = $isv6 ? PVE::ProcFSTools::read_proc_net_ipv6_route()
948 : PVE::ProcFSTools::read_proc_net_route();
93be4333 949 foreach my $entry (@$routes) {
5dc356af
WB
950 my $mask;
951 if ($isv6) {
952 $mask = $entry->{prefix};
15c80000 953 next if !$mask; # skip the default route...
5dc356af 954 } else {
2e1ae6b9 955 $mask = $PVE::Network::ipv4_mask_hash_localnet->{$entry->{mask}};
5dc356af
WB
956 next if !defined($mask);
957 }
93be4333
DM
958 my $cidr = "$entry->{dest}/$mask";
959 my $testnet = Net::IP->new($cidr);
15c80000
WB
960 my $overlap = $testnet->overlaps($testip);
961 if ($overlap == $Net::IP::IP_B_IN_A_OVERLAP ||
962 $overlap == $Net::IP::IP_IDENTICAL)
963 {
525778d7 964 $__local_network = $cidr;
93be4333
DM
965 return;
966 }
967 }
968 };
969 warn $@ if $@;
970
525778d7 971 return $__local_network;
93be4333
DM
972}
973
6d959e3f
DM
974# ipset names are limited to 31 characters,
975# and we use '-v4' or '-v6' to indicate IP versions,
976# and we use '_swap' suffix for atomic update,
977# for example PVEFW-${VMID}-${ipset_name}_swap
30150dca 978
88c26d5e 979my $max_iptables_ipset_name_length = 31 - length("PVEFW-") - length("_swap");
708ba714
DM
980
981sub compute_ipset_chain_name {
88c26d5e 982 my ($vmid, $ipset_name, $ipversion) = @_;
708ba714
DM
983
984 $vmid = 0 if !defined($vmid);
985
88c26d5e 986 my $id = "$vmid-${ipset_name}-v$ipversion";
708ba714 987
88c26d5e 988 if (length($id) > $max_iptables_ipset_name_length) {
708ba714
DM
989 $id = PVE::Tools::fnv31a_hex($id);
990 }
991
992 return "PVEFW-$id";
993}
994
b692f42c
DM
995sub compute_ipfilter_ipset_name {
996 my ($iface) = @_;
997
998 return "ipfilter-$iface";
999}
1000
ecbea048
DM
1001sub parse_address_list {
1002 my ($str) = @_;
1003
e2c62733
DM
1004 if ($str =~ m/^(\+)(\S+)$/) { # ipset ref
1005 die "ipset name too long\n" if length($str) > ($max_ipset_name_length + 1);
1006 return;
1007 }
1008
1009 if ($str =~ m/^${ip_alias_pattern}$/) {
1010 die "alias name too long\n" if length($str) > $max_alias_name_length;
1011 return;
1012 }
d72beb8e 1013
3162af6b
DM
1014 my $count = 0;
1015 my $iprange = 0;
a589b6ac 1016 my $ipversion;
7697c041 1017
55b47371
WB
1018 my @elements = split(/,/, $str);
1019 die "extraneous commas in list\n" if $str ne join(',', @elements);
1020 foreach my $elem (@elements) {
3162af6b 1021 $count++;
c344e509
DM
1022 my $ip = Net::IP->new($elem);
1023 if (!$ip) {
ecbea048
DM
1024 my $err = Net::IP::Error();
1025 die "invalid IP address: $err\n";
1026 }
3162af6b 1027 $iprange = 1 if $elem =~ m/-/;
a589b6ac 1028
c344e509 1029 my $new_ipversion = Net::IP::ip_is_ipv6($ip->ip()) ? 6 : 4;
a589b6ac
DM
1030
1031 die "detected mixed ipv4/ipv6 addresses in address list '$str'\n"
006490cb 1032 if $ipversion && ($new_ipversion != $ipversion);
a589b6ac
DM
1033
1034 $ipversion = $new_ipversion;
ecbea048 1035 }
e34d0e58 1036
5163367b 1037 die "you can't use a range in a list\n" if $iprange && $count > 1;
a589b6ac 1038
7697c041 1039 return $ipversion;
ecbea048 1040}
dddd9413 1041
fcba0beb 1042sub parse_port_name_number_or_range {
a1c04f71 1043 my ($str, $dport) = @_;
fcba0beb
DM
1044
1045 my $services = PVE::Firewall::get_etc_services();
7ca36671 1046 my $count = 0;
041b7e8e
DM
1047 my $icmp_port = 0;
1048
55b47371
WB
1049 my @elements = split(/,/, $str);
1050 die "extraneous commas in list\n" if $str ne join(',', @elements);
1051 foreach my $item (@elements) {
7ca36671 1052 if ($item =~ m/^(\d+):(\d+)$/) {
6a241ca7 1053 $count += 2;
7ca36671
DM
1054 my ($port1, $port2) = ($1, $2);
1055 die "invalid port '$port1'\n" if $port1 > 65535;
1056 die "invalid port '$port2'\n" if $port2 > 65535;
1057 } elsif ($item =~ m/^(\d+)$/) {
6a241ca7 1058 $count += 1;
7ca36671
DM
1059 my $port = $1;
1060 die "invalid port '$port'\n" if $port > 65535;
1061 } else {
a1c04f71 1062 if ($dport && $icmp_type_names->{$item}) {
041b7e8e 1063 $icmp_port = 1;
a1c04f71 1064 } elsif ($dport && $icmpv6_type_names->{$item}) {
041b9277 1065 $icmp_port = 1;
041b7e8e 1066 } else {
e34d0e58 1067 die "invalid port '$item'\n" if !$services->{byname}->{$item};
041b7e8e 1068 }
fcba0beb
DM
1069 }
1070 }
1071
6a241ca7
WB
1072 die "ICPM ports not allowed in port range\n" if $icmp_port && $count > 0;
1073
1074 # I really don't like to use the word number here, but it's the only thing
1075 # that makes sense in a literal way. The range 1:100 counts as 2, not as
1076 # one and not as 100...
1077 die "too many entries in port list (> 15 numbers)\n"
1078 if $count > 15;
041b7e8e 1079
f776d6de 1080 return (scalar(@elements) > 1);
fcba0beb
DM
1081}
1082
a1c04f71
WB
1083PVE::JSONSchema::register_format('pve-fw-sport-spec', \&pve_fw_verify_sport_spec);
1084sub pve_fw_verify_sport_spec {
1085 my ($portstr) = @_;
1086
1087 parse_port_name_number_or_range($portstr, 0);
1088
1089 return $portstr;
1090}
1091
1092PVE::JSONSchema::register_format('pve-fw-dport-spec', \&pve_fw_verify_dport_spec);
1093sub pve_fw_verify_dport_spec {
54cd19a8
DM
1094 my ($portstr) = @_;
1095
a1c04f71 1096 parse_port_name_number_or_range($portstr, 1);
54cd19a8
DM
1097
1098 return $portstr;
1099}
1100
d31689ee
DM
1101PVE::JSONSchema::register_format('pve-fw-addr-spec', \&pve_fw_verify_addr_spec);
1102sub pve_fw_verify_addr_spec {
54cd19a8
DM
1103 my ($list) = @_;
1104
1105 parse_address_list($list);
1106
1107 return $list;
1108}
1109
1110PVE::JSONSchema::register_format('pve-fw-protocol-spec', \&pve_fw_verify_protocol_spec);
1111sub pve_fw_verify_protocol_spec {
1112 my ($proto) = @_;
1113
1114 my $protocols = get_etc_protocols();
1115
1116 die "unknown protocol '$proto'\n" if $proto &&
1117 !(defined($protocols->{byname}->{$proto}) ||
1118 defined($protocols->{byid}->{$proto}));
1119
1120 return $proto;
1121}
1122
1123
d1c53b3e 1124# helper function for API
d1c53b3e 1125
5d38d64f
DM
1126sub copy_opject_with_digest {
1127 my ($object) = @_;
1128
1129 my $sha = Digest::SHA->new('sha1');
1130
1131 my $res = {};
1132 foreach my $k (sort keys %$object) {
1133 my $v = $object->{$k};
0365eb68 1134 next if !defined($v);
5d38d64f
DM
1135 $res->{$k} = $v;
1136 $sha->add($k, ':', $v, "\n");
1137 }
1138
55e686c7 1139 my $digest = $sha->hexdigest;
5d38d64f
DM
1140
1141 $res->{digest} = $digest;
1142
1143 return wantarray ? ($res, $digest) : $res;
1144}
1145
1146sub copy_list_with_digest {
1147 my ($list) = @_;
1148
1149 my $sha = Digest::SHA->new('sha1');
1150
1151 my $res = [];
1152 foreach my $entry (@$list) {
1153 my $data = {};
1154 foreach my $k (sort keys %$entry) {
1155 my $v = $entry->{$k};
0365eb68 1156 next if !defined($v);
5d38d64f 1157 $data->{$k} = $v;
6d9246e7 1158 # Note: digest ignores refs ($rule->{errors})
e83f0d00
DC
1159 # since Digest::SHA expects a series of bytes,
1160 # we have to encode the value here to prevent errors when
1161 # using utf8 characters (eg. in comments)
1162 $sha->add($k, ':', encode_utf8($v), "\n") if !ref($v); ;
5d38d64f
DM
1163 }
1164 push @$res, $data;
1165 }
1166
55e686c7 1167 my $digest = $sha->hexdigest;
5d38d64f
DM
1168
1169 foreach my $entry (@$res) {
1170 $entry->{digest} = $digest;
1171 }
1172
1173 return wantarray ? ($res, $digest) : $res;
1174}
1175
e313afe0
DM
1176our $cluster_option_properties = {
1177 enable => {
1178 description => "Enable or disable the firewall cluster wide.",
1179 type => 'integer',
1180 minimum => 0,
1181 optional => 1,
1182 },
1183 policy_in => {
1184 description => "Input policy.",
1185 type => 'string',
1186 optional => 1,
1187 enum => ['ACCEPT', 'REJECT', 'DROP'],
1188 },
1189 policy_out => {
1190 description => "Output policy.",
1191 type => 'string',
1192 optional => 1,
1193 enum => ['ACCEPT', 'REJECT', 'DROP'],
1194 },
1195};
1196
1197our $host_option_properties = {
1198 enable => {
1199 description => "Enable host firewall rules.",
1200 type => 'boolean',
1201 optional => 1,
1202 },
1203 log_level_in => get_standard_option('pve-fw-loglevel', {
1204 description => "Log level for incoming traffic." }),
1205 log_level_out => get_standard_option('pve-fw-loglevel', {
1206 description => "Log level for outgoing traffic." }),
1207 tcp_flags_log_level => get_standard_option('pve-fw-loglevel', {
1208 description => "Log level for illegal tcp flags filter." }),
1209 smurf_log_level => get_standard_option('pve-fw-loglevel', {
1210 description => "Log level for SMURFS filter." }),
1211 nosmurfs => {
1212 description => "Enable SMURFS filter.",
1213 type => 'boolean',
1214 optional => 1,
1215 },
1216 tcpflags => {
1217 description => "Filter illegal combinations of TCP flags.",
1218 type => 'boolean',
1219 optional => 1,
1220 },
1221 nf_conntrack_max => {
1222 description => "Maximum number of tracked connections.",
1223 type => 'integer',
1224 optional => 1,
1225 minimum => 32768,
1226 },
1227 nf_conntrack_tcp_timeout_established => {
1228 description => "Conntrack established timeout.",
1229 type => 'integer',
1230 optional => 1,
1231 minimum => 7875,
1232 },
1233 ndp => {
1234 description => "Enable NDP.",
1235 type => 'boolean',
1236 optional => 1,
1237 },
1238};
1239
1240our $vm_option_properties = {
1241 enable => {
1242 description => "Enable/disable firewall rules.",
1243 type => 'boolean',
1244 optional => 1,
1245 },
1246 macfilter => {
1247 description => "Enable/disable MAC address filter.",
1248 type => 'boolean',
1249 optional => 1,
1250 },
1251 dhcp => {
1252 description => "Enable DHCP.",
1253 type => 'boolean',
1254 optional => 1,
1255 },
1256 ndp => {
1257 description => "Enable NDP.",
1258 type => 'boolean',
1259 optional => 1,
1260 },
1261 radv => {
1262 description => "Allow sending Router Advertisement.",
1263 type => 'boolean',
1264 optional => 1,
1265 },
1266 ipfilter => {
1267 description => "Enable default IP filters. " .
1268 "This is equivalent to adding an empty ipfilter-net<id> ipset " .
1269 "for every interface. Such ipsets implicitly contain sane default " .
1270 "restrictions such as restricting IPv6 link local addresses to " .
1271 "the one derived from the interface's MAC address. For containers " .
1272 "the configured IP addresses will be implicitly added.",
1273 type => 'boolean',
1274 optional => 1,
1275 },
1276 policy_in => {
1277 description => "Input policy.",
1278 type => 'string',
1279 optional => 1,
1280 enum => ['ACCEPT', 'REJECT', 'DROP'],
1281 },
1282 policy_out => {
1283 description => "Output policy.",
1284 type => 'string',
1285 optional => 1,
1286 enum => ['ACCEPT', 'REJECT', 'DROP'],
1287 },
1288 log_level_in => get_standard_option('pve-fw-loglevel', {
1289 description => "Log level for incoming traffic." }),
1290 log_level_out => get_standard_option('pve-fw-loglevel', {
1291 description => "Log level for outgoing traffic." }),
1292
1293};
1294
fb060a52 1295
7a332151 1296my $addr_list_descr = "This can refer to a single IP address, an IP set ('+ipsetname') or an IP alias definition. You can also specify an address range like '20.34.101.207-201.3.9.99', or a list of IP addresses and networks (entries are separated by comma). Please do not mix IPv4 and IPv6 addresses inside such lists.";
fb060a52 1297
7a332151 1298my $port_descr = "You can use service names or simple numbers (0-65535), as defined in '/etc/services'. Port ranges can be specified with '\\d+:\\d+', for example '80:85', and you can use comma separated list to match several ports or ranges.";
fb060a52 1299
9c7e0858
DM
1300my $rule_properties = {
1301 pos => {
1302 description => "Update rule at position <pos>.",
1303 type => 'integer',
1304 minimum => 0,
1305 optional => 1,
1306 },
c71e785f 1307 digest => get_standard_option('pve-config-digest'),
9c7e0858 1308 type => {
e50429af 1309 description => "Rule type.",
9c7e0858
DM
1310 type => 'string',
1311 optional => 1,
1312 enum => ['in', 'out', 'group'],
1313 },
1314 action => {
c14dacdf 1315 description => "Rule action ('ACCEPT', 'DROP', 'REJECT') or security group name.",
9c7e0858
DM
1316 type => 'string',
1317 optional => 1,
44be8ceb 1318 pattern => $security_group_name_pattern,
c14dacdf
DM
1319 maxLength => 20,
1320 minLength => 2,
9c7e0858 1321 },
e5076eee 1322 macro => {
e50429af 1323 description => "Use predefined standard macro.",
e5076eee
DM
1324 type => 'string',
1325 optional => 1,
54cd19a8 1326 maxLength => 128,
e5076eee 1327 },
fb060a52 1328 iface => get_standard_option('pve-iface', {
7ccaa5f1 1329 description => "Network interface name. You have to use network configuration key names for VMs and containers ('net\\d+'). Host related rules can use arbitrary strings.",
fb060a52
DM
1330 optional => 1
1331 }),
9c7e0858 1332 source => {
fb060a52 1333 description => "Restrict packet source address. $addr_list_descr",
d31689ee 1334 type => 'string', format => 'pve-fw-addr-spec',
9c7e0858
DM
1335 optional => 1,
1336 },
1337 dest => {
fb060a52 1338 description => "Restrict packet destination address. $addr_list_descr",
d31689ee 1339 type => 'string', format => 'pve-fw-addr-spec',
9c7e0858
DM
1340 optional => 1,
1341 },
1342 proto => {
fb060a52 1343 description => "IP protocol. You can use protocol names ('tcp'/'udp') or simple numbers, as defined in '/etc/protocols'.",
54cd19a8 1344 type => 'string', format => 'pve-fw-protocol-spec',
9c7e0858
DM
1345 optional => 1,
1346 },
1347 enable => {
e50429af 1348 description => "Flag to enable/disable a rule.",
72d055fc
AG
1349 type => 'integer',
1350 minimum => 0,
9c7e0858
DM
1351 optional => 1,
1352 },
1353 sport => {
fb060a52 1354 description => "Restrict TCP/UDP source port. $port_descr",
a1c04f71 1355 type => 'string', format => 'pve-fw-sport-spec',
9c7e0858
DM
1356 optional => 1,
1357 },
1358 dport => {
fb060a52 1359 description => "Restrict TCP/UDP destination port. $port_descr",
a1c04f71 1360 type => 'string', format => 'pve-fw-dport-spec',
9c7e0858
DM
1361 optional => 1,
1362 },
1363 comment => {
e50429af 1364 description => "Descriptive comment.",
9c7e0858
DM
1365 type => 'string',
1366 optional => 1,
1367 },
1368};
1369
1370sub add_rule_properties {
1371 my ($properties) = @_;
1372
1373 foreach my $k (keys %$rule_properties) {
3655b01f
DM
1374 my $h = $rule_properties->{$k};
1375 # copy data, so that we can modify later without side effects
1376 foreach my $opt (keys %$h) { $properties->{$k}->{$opt} = $h->{$opt}; }
9c7e0858 1377 }
cbb5d6f3 1378
9c7e0858
DM
1379 return $properties;
1380}
1381
5b7974df
DM
1382sub delete_rule_properties {
1383 my ($rule, $delete_str) = @_;
e34d0e58 1384
5b7974df
DM
1385 foreach my $opt (PVE::Tools::split_list($delete_str)) {
1386 raise_param_exc({ 'delete' => "no such property ('$opt')"})
1387 if !defined($rule_properties->{$opt});
1388 raise_param_exc({ 'delete' => "unable to delete required property '$opt'"})
1389 if $opt eq 'type' || $opt eq 'action';
1390 delete $rule->{$opt};
1391 }
1392
1393 return $rule;
1394}
1395
9a2745a0 1396my $apply_macro = sub {
35d1d6da 1397 my ($macro_name, $param, $verify, $ipversion) = @_;
9a2745a0
DM
1398
1399 my $macro_rules = $pve_fw_parsed_macros->{$macro_name};
1400 die "unknown macro '$macro_name'\n" if !$macro_rules; # should not happen
1401
35d1d6da
DM
1402 if ($ipversion && ($ipversion == 6) && $pve_ipv6fw_macros->{$macro_name}) {
1403 $macro_rules = $pve_ipv6fw_macros->{$macro_name};
1404 }
1405
21a18e53 1406 # skip macros which are specific to another ipversion
ff5d050e
AG
1407 if ($ipversion && (my $required = $pve_fw_macro_ipversion->{$macro_name})) {
1408 return if $ipversion != $required;
1409 }
21a18e53 1410
9a2745a0
DM
1411 my $rules = [];
1412
1413 foreach my $templ (@$macro_rules) {
1414 my $rule = {};
1415 my $param_used = {};
1416 foreach my $k (keys %$templ) {
1417 my $v = $templ->{$k};
1418 if ($v eq 'PARAM') {
1419 $v = $param->{$k};
1420 $param_used->{$k} = 1;
1421 } elsif ($v eq 'DEST') {
1422 $v = $param->{dest};
1423 $param_used->{dest} = 1;
1424 } elsif ($v eq 'SOURCE') {
1425 $v = $param->{source};
1426 $param_used->{source} = 1;
1427 }
1428
1429 if (!defined($v)) {
1430 my $msg = "missing parameter '$k' in macro '$macro_name'";
e34d0e58 1431 raise_param_exc({ macro => $msg }) if $verify;
9a2745a0
DM
1432 die "$msg\n";
1433 }
1434 $rule->{$k} = $v;
1435 }
1436 foreach my $k (keys %$param) {
1437 next if $k eq 'macro';
1438 next if !defined($param->{$k});
1439 next if $param_used->{$k};
1440 if (defined($rule->{$k})) {
1441 if ($rule->{$k} ne $param->{$k}) {
1442 my $msg = "parameter '$k' already define in macro (value = '$rule->{$k}')";
e34d0e58 1443 raise_param_exc({ $k => $msg }) if $verify;
9a2745a0
DM
1444 die "$msg\n";
1445 }
1446 } else {
1447 $rule->{$k} = $param->{$k};
1448 }
1449 }
1450 push @$rules, $rule;
1451 }
1452
1453 return $rules;
1454};
1455
b6b8e6ad
DM
1456my $rule_env_iface_lookup = {
1457 'ct' => 1,
1458 'vm' => 1,
1459 'group' => 0,
1460 'cluster' => 1,
1461 'host' => 1,
1462};
1463
7ca36671 1464sub verify_rule {
a523e057 1465 my ($rule, $cluster_conf, $fw_conf, $rule_env, $noerr) = @_;
b6b8e6ad
DM
1466
1467 my $allow_groups = $rule_env eq 'group' ? 0 : 1;
bfc488f6 1468
b6b8e6ad
DM
1469 my $allow_iface = $rule_env_iface_lookup->{$rule_env};
1470 die "unknown rule_env '$rule_env'\n" if !defined($allow_iface); # should not happen
7ca36671 1471
a523e057
DM
1472 my $errors = $rule->{errors} || {};
1473
6d9246e7 1474 my $error_count = 0;
7ca36671 1475
6d9246e7
DM
1476 my $add_error = sub {
1477 my ($param, $msg) = @_;
d4cda423 1478 chomp $msg;
6d9246e7
DM
1479 raise_param_exc({ $param => $msg }) if !$noerr;
1480 $error_count++;
1481 $errors->{$param} = $msg if !$errors->{$param};
1482 };
1483
eea9d2a1
DM
1484 my $ipversion;
1485 my $set_ip_version = sub {
1486 my $vers = shift;
1487 if ($vers) {
1488 die "detected mixed ipv4/ipv6 adresses in rule\n"
1489 if $ipversion && ($vers != $ipversion);
1490 $ipversion = $vers;
1491 }
1492 };
1493
a523e057 1494 my $check_ipset_or_alias_property = sub {
ae029a88 1495 my ($name, $expected_ipversion) = @_;
a523e057
DM
1496
1497 if (my $value = $rule->{$name}) {
1498 if ($value =~ m/^\+/) {
4dfe04e6 1499 if ($value =~ m/^\+(${ipset_name_pattern})$/) {
bfc488f6 1500 &$add_error($name, "no such ipset '$1'")
a523e057 1501 if !($cluster_conf->{ipset}->{$1} || ($fw_conf && $fw_conf->{ipset}->{$1}));
bfc488f6 1502
a523e057 1503 } else {
351052d1 1504 &$add_error($name, "invalid ipset name '$value'");
a523e057
DM
1505 }
1506 } elsif ($value =~ m/^${ip_alias_pattern}$/){
1507 my $alias = lc($value);
bfc488f6 1508 &$add_error($name, "no such alias '$value'")
70e524eb 1509 if !($cluster_conf->{aliases}->{$alias} || ($fw_conf && $fw_conf->{aliases}->{$alias}));
04f5088f 1510 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
70e524eb
AD
1511 $e = $cluster_conf->{aliases}->{$alias} if !$e && $cluster_conf;
1512
eea9d2a1 1513 &$set_ip_version($e->{ipversion});
a523e057
DM
1514 }
1515 }
1516 };
1517
6d9246e7
DM
1518 my $type = $rule->{type};
1519 my $action = $rule->{action};
bfc488f6 1520
6d9246e7
DM
1521 &$add_error('type', "missing property") if !$type;
1522 &$add_error('action', "missing property") if !$action;
1523
1524 if ($type) {
1525 if ($type eq 'in' || $type eq 'out') {
1526 &$add_error('action', "unknown action '$action'")
1527 if $action && ($action !~ m/^(ACCEPT|DROP|REJECT)$/);
1528 } elsif ($type eq 'group') {
1529 &$add_error('type', "security groups not allowed")
1530 if !$allow_groups;
1531 &$add_error('action', "invalid characters in security group name")
1532 if $action && ($action !~ m/^${security_group_name_pattern}$/);
1533 } else {
1534 &$add_error('type', "unknown rule type '$type'");
1535 }
7ca36671 1536 }
e34d0e58 1537
dba740a9 1538 if ($rule->{iface}) {
bfc488f6 1539 &$add_error('type', "parameter -i not allowed for this rule type")
b6b8e6ad 1540 if !$allow_iface;
dba740a9 1541 eval { PVE::JSONSchema::pve_verify_iface($rule->{iface}); };
6d9246e7 1542 &$add_error('iface', $@) if $@;
fdefeeab 1543 if ($rule_env eq 'vm' || $rule_env eq 'ct') {
b6b8e6ad
DM
1544 &$add_error('iface', "value does not match the regex pattern 'net\\d+'")
1545 if $rule->{iface} !~ m/^net(\d+)$/;
b6b8e6ad
DM
1546 }
1547 }
7ca36671
DM
1548
1549 if ($rule->{macro}) {
6d9246e7
DM
1550 if (my $preferred_name = $pve_fw_preferred_macro_names->{lc($rule->{macro})}) {
1551 $rule->{macro} = $preferred_name;
1552 } else {
1553 &$add_error('macro', "unknown macro '$rule->{macro}'");
1554 }
1555 }
1556
1557 if ($rule->{proto}) {
1558 eval { pve_fw_verify_protocol_spec($rule->{proto}); };
1559 &$add_error('proto', $@) if $@;
041b9277
DM
1560 &$set_ip_version(4) if $rule->{proto} eq 'icmp';
1561 &$set_ip_version(6) if $rule->{proto} eq 'icmpv6';
6d9246e7 1562 }
7ca36671
DM
1563
1564 if ($rule->{dport}) {
a1c04f71 1565 eval { parse_port_name_number_or_range($rule->{dport}, 1); };
6d9246e7 1566 &$add_error('dport', $@) if $@;
48e3963e 1567 my $proto = $rule->{proto};
6d9246e7 1568 &$add_error('proto', "missing property - 'dport' requires this property")
48e3963e
WB
1569 if !$proto;
1570 &$add_error('dport', "protocol '$proto' does not support ports")
1571 if !$PROTOCOLS_WITH_PORTS->{$proto} &&
1572 $proto ne 'icmp' && $proto ne 'icmpv6'; # special cases
6d9246e7 1573 }
7ca36671
DM
1574
1575 if ($rule->{sport}) {
a1c04f71 1576 eval { parse_port_name_number_or_range($rule->{sport}, 0); };
6d9246e7 1577 &$add_error('sport', $@) if $@;
48e3963e 1578 my $proto = $rule->{proto};
6d9246e7 1579 &$add_error('proto', "missing property - 'sport' requires this property")
48e3963e
WB
1580 if !$proto;
1581 &$add_error('sport', "protocol '$proto' does not support ports")
1582 if !$PROTOCOLS_WITH_PORTS->{$proto};
7ca36671
DM
1583 }
1584
1585 if ($rule->{source}) {
041b9277
DM
1586 eval {
1587 my $source_ipversion = parse_address_list($rule->{source});
1588 &$set_ip_version($source_ipversion);
1589 };
6d9246e7 1590 &$add_error('source', $@) if $@;
ae029a88 1591 &$check_ipset_or_alias_property('source', $ipversion);
7ca36671
DM
1592 }
1593
1594 if ($rule->{dest}) {
9e2205e5
DM
1595 eval {
1596 my $dest_ipversion = parse_address_list($rule->{dest});
041b9277 1597 &$set_ip_version($dest_ipversion);
9e2205e5 1598 };
6d9246e7 1599 &$add_error('dest', $@) if $@;
ae029a88 1600 &$check_ipset_or_alias_property('dest', $ipversion);
7ca36671
DM
1601 }
1602
35d1d6da
DM
1603 $rule->{ipversion} = $ipversion if $ipversion;
1604
a523e057 1605 if ($rule->{macro} && !$error_count) {
35d1d6da 1606 eval { &$apply_macro($rule->{macro}, $rule, 1, $ipversion); };
6d9246e7
DM
1607 if (my $err = $@) {
1608 if (ref($err) eq "PVE::Exception" && $err->{errors}) {
1609 my $eh = $err->{errors};
1610 foreach my $p (keys %$eh) {
1611 &$add_error($p, $eh->{$p});
1612 }
1613 } else {
1614 &$add_error('macro', "$err");
1615 }
1616 }
9a2745a0
DM
1617 }
1618
6d9246e7
DM
1619 $rule->{errors} = $errors if $error_count;
1620
7ca36671
DM
1621 return $rule;
1622}
1623
9c7e0858
DM
1624sub copy_rule_data {
1625 my ($rule, $param) = @_;
1626
1627 foreach my $k (keys %$rule_properties) {
1628 if (defined(my $v = $param->{$k})) {
1629 if ($v eq '' || $v eq '-') {
1630 delete $rule->{$k};
1631 } else {
1632 $rule->{$k} = $v;
1633 }
9c7e0858
DM
1634 }
1635 }
7ca36671 1636
9c7e0858
DM
1637 return $rule;
1638}
1639
9f6845cf
DM
1640sub rules_modify_permissions {
1641 my ($rule_env) = @_;
1642
1643 if ($rule_env eq 'host') {
1644 return {
1645 check => ['perm', '/nodes/{node}', [ 'Sys.Modify' ]],
1646 };
1647 } elsif ($rule_env eq 'cluster' || $rule_env eq 'group') {
1648 return {
1649 check => ['perm', '/', [ 'Sys.Modify' ]],
1650 };
3b4882dc 1651 } elsif ($rule_env eq 'vm' || $rule_env eq 'ct') {
9f6845cf
DM
1652 return {
1653 check => ['perm', '/vms/{vmid}', [ 'VM.Config.Network' ]],
1654 }
1655 }
1656
1657 return undef;
1658}
1659
1660sub rules_audit_permissions {
1661 my ($rule_env) = @_;
1662
1663 if ($rule_env eq 'host') {
1664 return {
1665 check => ['perm', '/nodes/{node}', [ 'Sys.Audit' ]],
1666 };
1667 } elsif ($rule_env eq 'cluster' || $rule_env eq 'group') {
1668 return {
1669 check => ['perm', '/', [ 'Sys.Audit' ]],
1670 };
3b4882dc 1671 } elsif ($rule_env eq 'vm' || $rule_env eq 'ct') {
9f6845cf
DM
1672 return {
1673 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
1674 }
1675 }
1676
1677 return undef;
1678}
1679
9c7e0858 1680# core functions
780bcc0f
DM
1681my $bridge_firewall_enabled = 0;
1682
1683sub enable_bridge_firewall {
1684
1685 return if $bridge_firewall_enabled; # only once
1686
5f0a912c
DM
1687 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-iptables", "1");
1688 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-ip6tables", "1");
780bcc0f 1689
6a8a75db
DM
1690 # make sure syncookies are enabled (which is default on newer 3.X kernels anyways)
1691 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/tcp_syncookies", "1");
1692
780bcc0f
DM
1693 $bridge_firewall_enabled = 1;
1694}
1695
b16e818e
DM
1696sub iptables_restore_cmdlist {
1697 my ($cmdlist) = @_;
3a616aa0 1698
59f9b456 1699 run_command("/sbin/iptables-restore -n", input => $cmdlist, errmsg => "iptables_restore_cmdlist");
3a616aa0
AD
1700}
1701
17da5c0f
AD
1702sub ip6tables_restore_cmdlist {
1703 my ($cmdlist) = @_;
1704
59f9b456 1705 run_command("/sbin/ip6tables-restore -n", input => $cmdlist, errmsg => "iptables_restore_cmdlist");
17da5c0f
AD
1706}
1707
34cdedfa
AD
1708sub ipset_restore_cmdlist {
1709 my ($cmdlist) = @_;
1710
ff5363da 1711 run_command("/sbin/ipset restore", input => $cmdlist, errmsg => "ipset_restore_cmdlist");
34cdedfa
AD
1712}
1713
151c209e
AD
1714sub ebtables_restore_cmdlist {
1715 my ($cmdlist) = @_;
1716
1717 run_command("/sbin/ebtables-restore", input => $cmdlist, errmsg => "ebtables_restore_cmdlist");
1718}
1719
de2a57cd 1720sub iptables_get_chains {
17da5c0f
AD
1721 my ($iptablescmd) = @_;
1722
1723 $iptablescmd = "iptables" if !$iptablescmd;
de2a57cd
DM
1724
1725 my $res = {};
1726
1727 # check what chains we want to track
1728 my $is_pvefw_chain = sub {
1729 my $name = shift;
1730
dec84fcd
DM
1731 return 1 if $name =~ m/^PVEFW-\S+$/;
1732
a3ded5cd 1733 return 1 if $name =~ m/^tap\d+i\d+-(?:IN|OUT)$/;
954f24b1 1734
a3ded5cd 1735 return 1 if $name =~ m/^veth\d+i\d+-(?:IN|OUT)$/;
954f24b1 1736
a3ded5cd 1737 return 1 if $name =~ m/^fwbr\d+(v\d+)?-(?:FW|IN|OUT|IPS)$/;
a89dfcc6 1738 return 1 if $name =~ m/^GROUP-(?:$security_group_name_pattern)-(?:IN|OUT)$/;
de2a57cd
DM
1739
1740 return undef;
1741 };
1742
1743 my $table = '';
1744
c4a2e5ae
DM
1745 my $hooks = {};
1746
de2a57cd
DM
1747 my $parser = sub {
1748 my $line = shift;
1749
1750 return if $line =~ m/^#/;
1751 return if $line =~ m/^\s*$/;
1752
1753 if ($line =~ m/^\*(\S+)$/) {
1754 $table = $1;
1755 return;
1756 }
1757
1758 return if $table ne 'filter';
1759
1760 if ($line =~ m/^:(\S+)\s/) {
1761 my $chain = $1;
1762 return if !&$is_pvefw_chain($chain);
3fa83edf 1763 $res->{$chain} = "unknown";
09d5f68e 1764 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
3fa83edf 1765 my ($chain, $sig) = ($1, $2);
de2a57cd 1766 return if !&$is_pvefw_chain($chain);
3fa83edf 1767 $res->{$chain} = $sig;
c4a2e5ae
DM
1768 } elsif ($line =~ m/^-A\s+(INPUT|OUTPUT|FORWARD)\s+-j\s+PVEFW-\1$/) {
1769 $hooks->{$1} = 1;
de2a57cd
DM
1770 } else {
1771 # simply ignore the rest
1772 return;
1773 }
1774 };
1775
17da5c0f 1776 run_command("/sbin/$iptablescmd-save", outfunc => $parser);
de2a57cd 1777
c4a2e5ae 1778 return wantarray ? ($res, $hooks) : $res;
de2a57cd
DM
1779}
1780
9bf7d929
DM
1781sub iptables_chain_digest {
1782 my ($rules) = @_;
1783 my $digest = Digest::SHA->new('sha1');
1784 foreach my $rule (@$rules) { # order is important
1785 $digest->add($rule);
1786 }
1787 return $digest->b64digest;
1788}
1789
3f95d14a
DM
1790sub ipset_chain_digest {
1791 my ($rules) = @_;
4bd0a9c4 1792
3f95d14a
DM
1793 my $digest = Digest::SHA->new('sha1');
1794 foreach my $rule (sort @$rules) { # note: sorted
1795 $digest->add($rule);
1796 }
1797 return $digest->b64digest;
1798}
1799
34cdedfa
AD
1800sub ipset_get_chains {
1801
1802 my $res = {};
1803 my $chains = {};
1804
1805 my $parser = sub {
1806 my $line = shift;
1807
1808 return if $line =~ m/^#/;
1809 return if $line =~ m/^\s*$/;
4b96e877 1810 if ($line =~ m/^(?:\S+)\s(PVEFW-\S+)\s(?:\S+).*/) {
81a0bf43
DM
1811 my $chain = $1;
1812 $line =~ s/\s+$//; # delete trailing white space
1813 push @{$chains->{$chain}}, $line;
34cdedfa
AD
1814 } else {
1815 # simply ignore the rest
1816 return;
1817 }
1818 };
1819
ff5363da 1820 run_command("/sbin/ipset save", outfunc => $parser);
34cdedfa 1821
3f95d14a
DM
1822 # compute digest for each chain
1823 foreach my $chain (keys %$chains) {
1824 $res->{$chain} = ipset_chain_digest($chains->{$chain});
34cdedfa
AD
1825 }
1826
1827 return $res;
1828}
1829
151c209e
AD
1830sub ebtables_get_chains {
1831
1832 my $res = {};
1833 my $chains = {};
1834
1835 my $parser = sub {
1836 my $line = shift;
1837 return if $line =~ m/^#/;
1838 return if $line =~ m/^\s*$/;
1839 if ($line =~ m/^(?:\S+)\s(PVEFW-\S+)\s(?:\S+).*/) {
1840 my $chain = $1;
1841 $line =~ s/\s+$//;
1842 push @{$chains->{$chain}}, $line;
1843 } elsif ($line =~ m/^(?:\S+)\s(tap\d+i\d+-(:?IN|OUT))\s(?:\S+).*/) {
1844 my $chain = $1;
1845 $line =~ s/\s+$//;
1846 push @{$chains->{$chain}}, $line;
1847 } elsif ($line =~ m/^(?:\S+)\s(veth\d+i\d+-(:?IN|OUT))\s(?:\S+).*/) {
1848 my $chain = $1;
1849 $line =~ s/\s+$//;
1850 push @{$chains->{$chain}}, $line;
1851 } else {
1852 # simply ignore the rest
1853 return;
1854 }
1855 };
1856
1857 run_command("/sbin/ebtables-save", outfunc => $parser);
1858
1859 # compute digest for each chain
1860 foreach my $chain (keys %$chains) {
1861 $res->{$chain} = iptables_chain_digest($chains->{$chain});
1862 }
1863 return $res;
1864}
1865
180da76c
TW
1866# substitude action of rule according to action hash
1867sub rule_substitude_action {
1868 my ($rule, $actions) = @_;
1869
1870 if (my $action = $rule->{action}) {
1871 $rule->{action} = $actions->{$action} if defined($actions->{$action});
1872 }
1873}
1874
a44cb745
TW
1875# generate a src or dst match
1876# $dir(ection) is either d or s
1877sub ipt_gen_src_or_dst_match {
1878 my ($adr, $dir, $ipversion, $cluster_conf, $fw_conf) = @_;
1879
1880 my $srcdst;
1881 if ($dir eq 's') {
1882 $srcdst = "src";
1883 } elsif ($dir eq 'd') {
1884 $srcdst = "dst";
1885 } else {
1886 die "ipt_gen_src_or_dst_match: invalid direction $dir \n";
1887 }
1888
1889 my $match;
1890 if ($adr =~ m/^\+/) {
1891 if ($adr =~ m/^\+(${ipset_name_pattern})$/) {
1892 my $name = $1;
1893 my $ipset_chain;
1894 if ($fw_conf && $fw_conf->{ipset}->{$name}) {
1895 $ipset_chain = compute_ipset_chain_name($fw_conf->{vmid}, $name, $ipversion);
1896 } elsif ($cluster_conf && $cluster_conf->{ipset}->{$name}) {
1897 $ipset_chain = compute_ipset_chain_name(0, $name, $ipversion);
1898 } else {
1899 die "no such ipset '$name'\n";
1900 }
1901 $match = "-m set --match-set ${ipset_chain} ${srcdst}";
1902 } else {
1903 die "invalid security group name '$adr'\n";
1904 }
1905 } elsif ($adr =~ m/^${ip_alias_pattern}$/){
1906 my $alias = lc($adr);
1907 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
1908 $e = $cluster_conf->{aliases}->{$alias} if !$e && $cluster_conf;
1909 die "no such alias '$adr'\n" if !$e;
1910 $match = "-${dir} $e->{cidr}";
1911 } elsif ($adr =~ m/\-/){
1912 $match = "-m iprange --${srcdst}-range $adr";
1913 } else {
1914 $match = "-${dir} $adr";
1915 }
1916
1917 return $match;
1918}
1919
30c390f9
TW
1920# convert a %rule to an array of iptables commands
1921sub ipt_rule_to_cmds {
1922 my ($rule, $chain, $ipversion, $cluster_conf, $fw_conf, $vmid) = @_;
1923
1924 die "ipt_rule_to_cmds unable to handle macro" if $rule->{macro}; #should not happen
1925
1926 my @match = ();
1927
1928 if (defined $rule->{match}) {
1929 push @match, $rule->{match};
1930 } else {
1931 push @match, "-i $rule->{iface_in}" if $rule->{iface_in};
1932 push @match, "-o $rule->{iface_out}" if $rule->{iface_out};
1933
1934 if ($rule->{source}) {
1935 push @match, ipt_gen_src_or_dst_match($rule->{source}, 's', $ipversion, $cluster_conf, $fw_conf);
1936 }
1937 if ($rule->{dest}) {
1938 push @match, ipt_gen_src_or_dst_match($rule->{dest}, 'd', $ipversion, $cluster_conf, $fw_conf);
1939 }
1940
1941 if (my $proto = $rule->{proto}) {
1942 push @match, "-p $proto";
1943
f776d6de
WB
1944 my $multidport = defined($rule->{dport}) && parse_port_name_number_or_range($rule->{dport}, 1);
1945 my $multisport = defined($rule->{sport}) && parse_port_name_number_or_range($rule->{sport}, 0);
30c390f9 1946
f776d6de
WB
1947 my $add_dport = sub {
1948 return if !$rule->{dport};
3dffed4c 1949
30c390f9
TW
1950 if ($proto eq 'icmp') {
1951 # Note: we use dport to store --icmp-type
1952 die "unknown icmp-type '$rule->{dport}'\n"
1953 if $rule->{dport} !~ /^\d+$/ && !defined($icmp_type_names->{$rule->{dport}});
1954 push @match, "-m icmp --icmp-type $rule->{dport}";
1955 } elsif ($proto eq 'icmpv6') {
1956 # Note: we use dport to store --icmpv6-type
1957 die "unknown icmpv6-type '$rule->{dport}'\n"
1958 if $rule->{dport} !~ /^\d+$/ && !defined($icmpv6_type_names->{$rule->{dport}});
1959 push @match, "-m icmpv6 --icmpv6-type $rule->{dport}";
1960 } elsif (!$PROTOCOLS_WITH_PORTS->{$proto}) {
1961 die "protocol $proto does not have ports\n";
f776d6de
WB
1962 } elsif ($multidport) {
1963 push @match, "--match multiport", "--dports $rule->{dport}";
30c390f9 1964 } else {
f776d6de 1965 push @match, "--dport $rule->{dport}";
30c390f9 1966 }
f776d6de 1967 };
30c390f9 1968
f776d6de
WB
1969 my $add_sport = sub {
1970 return if !$rule->{sport};
3dffed4c 1971
30c390f9
TW
1972 die "protocol $proto does not have ports\n"
1973 if !$PROTOCOLS_WITH_PORTS->{$proto};
f776d6de
WB
1974 if ($multisport) {
1975 push @match, "--match multiport", "--sports $rule->{sport}";
30c390f9
TW
1976 } else {
1977 push @match, "--sport $rule->{sport}";
1978 }
f776d6de
WB
1979 };
1980
3dffed4c 1981 # order matters - single port before multiport!
f776d6de
WB
1982 $add_dport->() if $multisport;
1983 $add_sport->();
1984 $add_dport->() if !$multisport;
30c390f9
TW
1985 } elsif ($rule->{dport} || $rule->{sport}) {
1986 die "destination port '$rule->{dport}', but no protocol specified\n" if $rule->{dport};
1987 die "source port '$rule->{sport}', but no protocol specified\n" if $rule->{sport};
1988 }
1989
1990 push @match, "-m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
1991 }
1992 my $matchstr = scalar(@match) ? join(' ', @match) : "";
1993
1994 my $targetstr;
1995 if (defined $rule->{target}) {
1996 $targetstr = $rule->{target};
1997 } else {
1998 my $action = (defined $rule->{action}) ? $rule->{action} : "";
1999 my $goto = 1 if $action eq 'PVEFW-SET-ACCEPT-MARK';
2000 $targetstr = ($goto) ? "-g $action" : "-j $action";
2001 }
2002
2003 my @iptcmds;
2004 if (defined $rule->{log} && $rule->{log}) {
2005 my $logaction = get_log_rule_base($chain, $vmid, $rule->{logmsg}, $rule->{log});
2006 push @iptcmds, "-A $chain $matchstr $logaction";
2007 }
2008 push @iptcmds, "-A $chain $matchstr $targetstr";
2009 return @iptcmds;
2010}
2011
eba0fb64 2012sub ruleset_generate_rule {
2dc0a26e 2013 my ($ruleset, $chain, $ipversion, $rule, $cluster_conf, $fw_conf) = @_;
eba0fb64 2014
e5076eee
DM
2015 my $rules;
2016
2017 if ($rule->{macro}) {
35d1d6da 2018 $rules = &$apply_macro($rule->{macro}, $rule, 0, $ipversion);
e5076eee
DM
2019 } else {
2020 $rules = [ $rule ];
2021 }
2022
30c390f9
TW
2023 # update all or nothing
2024 my @ipt_rule_cmds;
2025 foreach my $r (@$rules) {
2026 push @ipt_rule_cmds, ipt_rule_to_cmds($r, $chain, $ipversion, $cluster_conf, $fw_conf);
2027 }
2028 foreach my $c (@ipt_rule_cmds) {
2029 ruleset_add_ipt_cmd($ruleset, $chain, $c);
2030 }
2031}
2032
3fa83edf
DM
2033sub ruleset_create_chain {
2034 my ($ruleset, $chain) = @_;
3a616aa0 2035
d050c724 2036 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
782c4cde 2037 die "chain name may not contain collons\n" if $chain =~ m/:/; # because of log format
d050c724 2038
3fa83edf
DM
2039 die "chain '$chain' already exists\n" if $ruleset->{$chain};
2040
2041 $ruleset->{$chain} = [];
3a616aa0
AD
2042}
2043
3fa83edf
DM
2044sub ruleset_chain_exist {
2045 my ($ruleset, $chain) = @_;
3a616aa0 2046
3fa83edf
DM
2047 return $ruleset->{$chain} ? 1 : undef;
2048}
3a616aa0 2049
30c390f9
TW
2050# add an iptables command (like generated by ipt_rule_to_cmds) to a chain
2051sub ruleset_add_ipt_cmd {
2052 my ($ruleset, $chain, $iptcmd) = @_;
2053
2054 die "no such chain '$chain'\n" if !$ruleset->{$chain};
2055
2056 push @{$ruleset->{$chain}}, $iptcmd;
2057}
2058
1e9c5070 2059sub ruleset_addrule {
7f7930f8 2060 my ($ruleset, $chain, $match, $action, $log, $logmsg, $vmid) = @_;
1e9c5070
TW
2061
2062 die "no such chain '$chain'\n" if !$ruleset->{$chain};
2063
7f7930f8
TW
2064 if (defined($log) && $log) {
2065 my $logaction = get_log_rule_base($chain, $vmid, $logmsg, $log);
2066 push @{$ruleset->{$chain}}, "-A $chain $match $logaction";
2067 }
1205831a
WB
2068 # for stable ebtables digests avoid double-spaces to match ebtables-save output
2069 $match .= ' ' if length($match);
2070 push @{$ruleset->{$chain}}, "-A $chain ${match}$action";
1e9c5070
TW
2071}
2072
3fa83edf 2073sub ruleset_insertrule {
1e9c5070 2074 my ($ruleset, $chain, $match, $action, $log) = @_;
3a616aa0 2075
3fa83edf 2076 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 2077
1e9c5070 2078 unshift @{$ruleset->{$chain}}, "-A $chain $match $action";
3fa83edf 2079}
3a616aa0 2080
782c4cde
DM
2081sub get_log_rule_base {
2082 my ($chain, $vmid, $msg, $loglevel) = @_;
cbb5d6f3 2083
782c4cde 2084 $vmid = 0 if !defined($vmid);
7f7930f8 2085 $msg = "" if !defined($msg);
782c4cde 2086
cbb5d6f3 2087 # Note: we use special format for prefix to pass further
7f7930f8 2088 # info to log daemon (VMID, LOGLEVEL and CHAIN)
782c4cde
DM
2089
2090 return "-j NFLOG --nflog-prefix \":$vmid:$loglevel:$chain: $msg\"";
2091}
2092
ead850e8 2093sub ruleset_add_chain_policy {
88c26d5e 2094 my ($ruleset, $chain, $ipversion, $vmid, $policy, $loglevel, $accept_action) = @_;
ead850e8
DM
2095
2096 if ($policy eq 'ACCEPT') {
2097
180da76c
TW
2098 my $rule = { action => 'ACCEPT' };
2099 rule_substitude_action($rule, { ACCEPT => $accept_action});
2100 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule);
ead850e8
DM
2101
2102 } elsif ($policy eq 'DROP') {
2103
1e9c5070 2104 ruleset_addrule($ruleset, $chain, "", "-j PVEFW-Drop");
ead850e8 2105
7f7930f8 2106 ruleset_addrule($ruleset, $chain, "", "-j DROP", $loglevel, "policy $policy: ", $vmid);
ead850e8 2107 } elsif ($policy eq 'REJECT') {
1e9c5070 2108 ruleset_addrule($ruleset, $chain, "", "-j PVEFW-Reject");
ead850e8 2109
7f7930f8 2110 ruleset_addrule($ruleset, $chain, "", "-g PVEFW-reject", $loglevel, "policy $policy:", $vmid);
ead850e8
DM
2111 } else {
2112 # should not happen
2113 die "internal error: unknown policy '$policy'";
2114 }
2115}
2116
a83abe93 2117sub ruleset_chain_add_ndp {
e8415920 2118 my ($ruleset, $chain, $ipversion, $options, $direction, $accept) = @_;
a83abe93
WB
2119 return if $ipversion != 6 || (defined($options->{ndp}) && !$options->{ndp});
2120
1e9c5070 2121 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-solicitation", $accept);
d7aa51ac 2122 if ($direction ne 'OUT' || $options->{radv}) {
1e9c5070 2123 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-advertisement", $accept);
d7aa51ac 2124 }
1e9c5070
TW
2125 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type neighbor-solicitation", $accept);
2126 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type neighbor-advertisement", $accept);
a83abe93
WB
2127}
2128
e2943485
DM
2129sub ruleset_chain_add_conn_filters {
2130 my ($ruleset, $chain, $accept) = @_;
2131
1e9c5070
TW
2132 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID", "-j DROP");
2133 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED", "-j $accept");
e2943485
DM
2134}
2135
2136sub ruleset_chain_add_input_filters {
88c26d5e 2137 my ($ruleset, $chain, $ipversion, $options, $cluster_conf, $loglevel) = @_;
2428e394
AD
2138
2139 if ($cluster_conf->{ipset}->{blacklist}){
b5831a0d
AD
2140 if (!ruleset_chain_exist($ruleset, "PVEFW-blacklist")) {
2141 ruleset_create_chain($ruleset, "PVEFW-blacklist");
7f7930f8 2142 ruleset_addrule($ruleset, "PVEFW-blacklist", "", "-j DROP", $loglevel, "DROP: ");
b5831a0d 2143 }
88c26d5e 2144 my $ipset_chain = compute_ipset_chain_name(0, 'blacklist', $ipversion);
1e9c5070 2145 ruleset_addrule($ruleset, $chain, "-m set --match-set ${ipset_chain} src", "-j PVEFW-blacklist");
2428e394 2146 }
e2943485
DM
2147
2148 if (!(defined($options->{nosmurfs}) && $options->{nosmurfs} == 0)) {
5b5c42b1 2149 if ($ipversion == 4) {
1e9c5070 2150 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID,NEW", "-j PVEFW-smurfs");
5b5c42b1 2151 }
e2943485
DM
2152 }
2153
2154 if ($options->{tcpflags}) {
1e9c5070 2155 ruleset_addrule($ruleset, $chain, "-p tcp", "-j PVEFW-tcpflags");
e2943485
DM
2156 }
2157}
2158
9e15114a 2159sub ruleset_create_vm_chain {
88c26d5e 2160 my ($ruleset, $chain, $ipversion, $options, $macaddr, $ipfilter_ipset, $direction) = @_;
3a616aa0 2161
9e15114a 2162 ruleset_create_chain($ruleset, $chain);
b47ecc88 2163 my $accept = generate_nfqueue($options);
3a616aa0 2164
ce15d90b 2165 if (!(defined($options->{dhcp}) && $options->{dhcp} == 0)) {
dcafc5fb
WB
2166 if ($ipversion == 4) {
2167 if ($direction eq 'OUT') {
2168 ruleset_generate_rule($ruleset, $chain, $ipversion,
2169 { action => 'PVEFW-SET-ACCEPT-MARK',
2170 proto => 'udp', sport => 68, dport => 67 });
2171 } else {
2172 ruleset_generate_rule($ruleset, $chain, $ipversion,
2173 { action => 'ACCEPT',
2174 proto => 'udp', sport => 67, dport => 68 });
2175 }
2176 } elsif ($ipversion == 6) {
2177 if ($direction eq 'OUT') {
2178 ruleset_generate_rule($ruleset, $chain, $ipversion,
2179 { action => 'PVEFW-SET-ACCEPT-MARK',
2180 proto => 'udp', sport => 546, dport => 547 });
2181 } else {
2182 ruleset_generate_rule($ruleset, $chain, $ipversion,
2183 { action => 'ACCEPT',
2184 proto => 'udp', sport => 547, dport => 546 });
2185 }
76a2d1e7 2186 }
dcafc5fb 2187
ce15d90b
DM
2188 }
2189
b21aca2c
DM
2190 if ($direction eq 'OUT') {
2191 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
1e9c5070 2192 ruleset_addrule($ruleset, $chain, "-m mac ! --mac-source $macaddr", "-j DROP");
b21aca2c 2193 }
d7aa51ac 2194 if ($ipversion == 6 && !$options->{radv}) {
1e9c5070 2195 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-advertisement", "-j DROP");
d7aa51ac 2196 }
808d711d 2197 if ($ipfilter_ipset) {
1e9c5070 2198 ruleset_addrule($ruleset, $chain, "-m set ! --match-set $ipfilter_ipset src", "-j DROP");
808d711d 2199 }
1e9c5070 2200 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
c29f55c9 2201 }
e8415920
WB
2202
2203 my $accept_action = $direction eq 'OUT' ? '-g PVEFW-SET-ACCEPT-MARK' : "-j $accept";
2204 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, $direction, $accept_action);
9e15114a
DM
2205}
2206
4bc6b5ac 2207sub ruleset_add_group_rule {
aedde2c2 2208 my ($ruleset, $cluster_conf, $chain, $rule, $direction, $action, $ipversion) = @_;
4bc6b5ac
DM
2209
2210 my $group = $rule->{action};
2211 my $group_chain = "GROUP-$group-$direction";
2212 if(!ruleset_chain_exist($ruleset, $group_chain)){
aedde2c2 2213 generate_group_rules($ruleset, $cluster_conf, $group, $ipversion);
4bc6b5ac 2214 }
bfc488f6 2215
f8b12fff 2216 if ($direction eq 'OUT' && $rule->{iface_out}) {
1e9c5070 2217 ruleset_addrule($ruleset, $chain, "-o $rule->{iface_out}", "-j $group_chain");
f8b12fff 2218 } elsif ($direction eq 'IN' && $rule->{iface_in}) {
1e9c5070 2219 ruleset_addrule($ruleset, $chain, "-i $rule->{iface_in}", "-j $group_chain");
4bc6b5ac 2220 } else {
1e9c5070 2221 ruleset_addrule($ruleset, $chain, "", "-j $group_chain");
4bc6b5ac
DM
2222 }
2223
1e9c5070 2224 ruleset_addrule($ruleset, $chain, "-m mark --mark $FWACCEPTMARK_ON", "-j $action");
4bc6b5ac
DM
2225}
2226
9e15114a 2227sub ruleset_generate_vm_rules {
84870b1a 2228 my ($ruleset, $rules, $cluster_conf, $vmfw_conf, $chain, $netid, $direction, $options, $ipversion) = @_;
9e15114a
DM
2229
2230 my $lc_direction = lc($direction);
c29f55c9 2231
6b8ca015
DM
2232 my $in_accept = generate_nfqueue($options);
2233
92e976b3
DM
2234 foreach my $rule (@$rules) {
2235 next if $rule->{iface} && $rule->{iface} ne $netid;
b7ab6989 2236 next if !$rule->{enable} || $rule->{errors};
006490cb 2237 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
84870b1a 2238
92e976b3 2239 if ($rule->{type} eq 'group') {
4bc6b5ac 2240 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, $direction,
aedde2c2 2241 $direction eq 'OUT' ? 'RETURN' : $in_accept, $ipversion);
92e976b3
DM
2242 } else {
2243 next if $rule->{type} ne $lc_direction;
921dfb33
DM
2244 eval {
2245 if ($direction eq 'OUT') {
180da76c 2246 rule_substitude_action($rule, { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
2dc0a26e 2247 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $vmfw_conf);
921dfb33 2248 } else {
180da76c 2249 rule_substitude_action($rule, { ACCEPT => $in_accept , REJECT => "PVEFW-reject" });
2dc0a26e 2250 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $vmfw_conf);
921dfb33
DM
2251 }
2252 };
2253 warn $@ if $@;
4e6112f9 2254 }
3a616aa0 2255 }
9e15114a
DM
2256}
2257
b47ecc88
AD
2258sub generate_nfqueue {
2259 my ($options) = @_;
2260
73089769
DM
2261 if ($options->{ips}) {
2262 my $action = "NFQUEUE";
2263 if ($options->{ips_queues} && $options->{ips_queues} =~ m/^(\d+)(:(\d+))?$/) {
2264 if (defined($3) && defined($1)) {
b47ecc88 2265 $action .= " --queue-balance $1:$3";
73089769 2266 } elsif (defined($1)) {
b47ecc88
AD
2267 $action .= " --queue-num $1";
2268 }
2269 }
8dc92812 2270 $action .= " --queue-bypass" if $feature_ipset_nomatch; #need kernel 3.10
73089769
DM
2271 return $action;
2272 } else {
2273 return "ACCEPT";
b47ecc88 2274 }
b47ecc88
AD
2275}
2276
da6fc60b 2277sub ruleset_generate_vm_ipsrules {
a01c32c7 2278 my ($ruleset, $options, $direction, $iface) = @_;
da6fc60b
AD
2279
2280 if ($options->{ips} && $direction eq 'IN') {
2281 my $nfqueue = generate_nfqueue($options);
2282
a01c32c7 2283 if (!ruleset_chain_exist($ruleset, "PVEFW-IPS")) {
da6fc60b
AD
2284 ruleset_create_chain($ruleset, "PVEFW-IPS");
2285 }
2286
1e9c5070 2287 ruleset_addrule($ruleset, "PVEFW-IPS", "-m physdev --physdev-out $iface --physdev-is-bridged", "-j $nfqueue");
da6fc60b
AD
2288 }
2289}
2290
9e15114a 2291sub generate_tap_rules_direction {
84870b1a 2292 my ($ruleset, $cluster_conf, $iface, $netid, $macaddr, $vmfw_conf, $vmid, $direction, $ipversion) = @_;
9e15114a
DM
2293
2294 my $lc_direction = lc($direction);
2295
2296 my $rules = $vmfw_conf->{rules};
2297
2298 my $options = $vmfw_conf->{options};
2299 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
2300
2301 my $tapchain = "$iface-$direction";
2302
b692f42c 2303 my $ipfilter_name = compute_ipfilter_ipset_name($netid);
88c26d5e 2304 my $ipfilter_ipset = compute_ipset_chain_name($vmid, $ipfilter_name, $ipversion)
74601077 2305 if $options->{ipfilter} || $vmfw_conf->{ipset}->{$ipfilter_name};
808d711d 2306
a34cfdd0 2307 # create chain with mac and ip filter
88c26d5e 2308 ruleset_create_vm_chain($ruleset, $tapchain, $ipversion, $options, $macaddr, $ipfilter_ipset, $direction);
9e15114a 2309
a34cfdd0 2310 if ($options->{enable}) {
84870b1a 2311 ruleset_generate_vm_rules($ruleset, $rules, $cluster_conf, $vmfw_conf, $tapchain, $netid, $direction, $options, $ipversion);
3a616aa0 2312
a34cfdd0 2313 ruleset_generate_vm_ipsrules($ruleset, $options, $direction, $iface);
da6fc60b 2314
a34cfdd0
DM
2315 # implement policy
2316 my $policy;
ccae0b50 2317
a34cfdd0
DM
2318 if ($direction eq 'OUT') {
2319 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
2320 } else {
72f63fde 2321 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
a34cfdd0 2322 }
ccae0b50 2323
a34cfdd0
DM
2324 my $accept = generate_nfqueue($options);
2325 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : $accept;
88c26d5e 2326 ruleset_add_chain_policy($ruleset, $tapchain, $ipversion, $vmid, $policy, $loglevel, $accept_action);
a34cfdd0
DM
2327 } else {
2328 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : 'ACCEPT';
88c26d5e 2329 ruleset_add_chain_policy($ruleset, $tapchain, $ipversion, $vmid, 'ACCEPT', $loglevel, $accept_action);
a34cfdd0 2330 }
3a616aa0 2331
3fa83edf 2332 # plug the tap chain to bridge chain
3cc81077 2333 if ($direction eq 'IN') {
a01c32c7 2334 ruleset_addrule($ruleset, "PVEFW-FWBR-IN",
1e9c5070 2335 "-m physdev --physdev-is-bridged --physdev-out $iface", "-j $tapchain");
3cc81077 2336 } else {
a01c32c7 2337 ruleset_addrule($ruleset, "PVEFW-FWBR-OUT",
1e9c5070 2338 "-m physdev --physdev-is-bridged --physdev-in $iface", "-j $tapchain");
3cc81077 2339 }
3a616aa0
AD
2340}
2341
d18c1e2b 2342sub enable_host_firewall {
aedde2c2 2343 my ($ruleset, $hostfw_conf, $cluster_conf, $ipversion) = @_;
0bd5f137 2344
92e976b3 2345 my $options = $hostfw_conf->{options};
63324b09 2346 my $cluster_options = $cluster_conf->{options};
92e976b3 2347 my $rules = $hostfw_conf->{rules};
35f0c37e 2348 my $cluster_rules = $cluster_conf->{rules};
178a63be 2349
3fa83edf 2350 # host inbound firewall
dec84fcd
DM
2351 my $chain = "PVEFW-HOST-IN";
2352 ruleset_create_chain($ruleset, $chain);
0bd5f137 2353
178a63be
DM
2354 my $loglevel = get_option_log_level($options, "log_level_in");
2355
1e9c5070 2356 ruleset_addrule($ruleset, $chain, "-i lo", "-j ACCEPT");
4ac863a6 2357
e2943485 2358 ruleset_chain_add_conn_filters($ruleset, $chain, 'ACCEPT');
e8415920 2359 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, 'IN', '-j RETURN');
88c26d5e 2360 ruleset_chain_add_input_filters($ruleset, $chain, $ipversion, $options, $cluster_conf, $loglevel);
fb424a00 2361
23e888f8
DM
2362 # we use RETURN because we need to check also tap rules
2363 my $accept_action = 'RETURN';
2364
1e9c5070 2365 ruleset_addrule($ruleset, $chain, "-p igmp", "-j $accept_action"); # important for multicast
cc8dc02f 2366
35f0c37e
DM
2367 # add host rules first, so that cluster wide rules can be overwritten
2368 foreach my $rule (@$rules, @$cluster_rules) {
5383df39 2369 next if !$rule->{enable} || $rule->{errors};
35d1d6da 2370 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
bfc488f6 2371
f8b12fff 2372 $rule->{iface_in} = $rule->{iface} if $rule->{iface};
5383df39 2373
1a9978ed
DM
2374 eval {
2375 if ($rule->{type} eq 'group') {
aedde2c2 2376 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, 'IN', $accept_action, $ipversion);
1a9978ed 2377 } elsif ($rule->{type} eq 'in') {
180da76c 2378 rule_substitude_action($rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
2dc0a26e 2379 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $hostfw_conf);
1a9978ed
DM
2380 }
2381 };
2382 warn $@ if $@;
f8b12fff 2383 delete $rule->{iface_in};
0bd5f137 2384 }
eb399cef
DM
2385
2386 # allow standard traffic for management ipset (includes cluster network)
88c26d5e 2387 my $mngmnt_ipset_chain = compute_ipset_chain_name(0, "management", $ipversion);
708ba714 2388 my $mngmntsrc = "-m set --match-set ${mngmnt_ipset_chain} src";
1e9c5070
TW
2389 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 8006", "-j $accept_action"); # PVE API
2390 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 5900:5999", "-j $accept_action"); # PVE VNC Console
2391 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 3128", "-j $accept_action"); # SPICE Proxy
2392 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 22", "-j $accept_action"); # SSH
bfc488f6 2393
afcd29b3
DM
2394 my $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
2395 my $localnet_ver = $cluster_conf->{aliases}->{local_network}->{ipversion};
3bc79f87 2396
eb399cef 2397 # corosync
35d1d6da 2398 if ($localnet && ($ipversion == $localnet_ver)) {
1e9c5070
TW
2399 my $corosync_rule = "-p udp --dport 5404:5405";
2400 ruleset_addrule($ruleset, $chain, "-s $localnet -d $localnet $corosync_rule", "-j $accept_action");
2401 ruleset_addrule($ruleset, $chain, "-s $localnet -m addrtype --dst-type MULTICAST $corosync_rule", "-j $accept_action");
3bc79f87 2402 }
0bd5f137 2403
23e888f8 2404 # implement input policy
63324b09 2405 my $policy = $cluster_options->{policy_in} || 'DROP'; # allow nothing by default
88c26d5e 2406 ruleset_add_chain_policy($ruleset, $chain, $ipversion, 0, $policy, $loglevel, $accept_action);
0bd5f137 2407
3fa83edf 2408 # host outbound firewall
aadd745e 2409 $chain = "PVEFW-HOST-OUT";
dec84fcd
DM
2410 ruleset_create_chain($ruleset, $chain);
2411
178a63be
DM
2412 $loglevel = get_option_log_level($options, "log_level_out");
2413
1e9c5070 2414 ruleset_addrule($ruleset, $chain, "-o lo", "-j ACCEPT");
e2943485
DM
2415
2416 ruleset_chain_add_conn_filters($ruleset, $chain, 'ACCEPT');
2417
23e888f8
DM
2418 # we use RETURN because we may want to check other thigs later
2419 $accept_action = 'RETURN';
e8415920 2420 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, 'OUT', "-j $accept_action");
23e888f8 2421
1e9c5070 2422 ruleset_addrule($ruleset, $chain, "-p igmp", "-j $accept_action"); # important for multicast
cc8dc02f 2423
35f0c37e
DM
2424 # add host rules first, so that cluster wide rules can be overwritten
2425 foreach my $rule (@$rules, @$cluster_rules) {
5383df39 2426 next if !$rule->{enable} || $rule->{errors};
35d1d6da 2427 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
5383df39 2428
f8b12fff 2429 $rule->{iface_out} = $rule->{iface} if $rule->{iface};
1a9978ed
DM
2430 eval {
2431 if ($rule->{type} eq 'group') {
aedde2c2 2432 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, 'OUT', $accept_action, $ipversion);
1a9978ed 2433 } elsif ($rule->{type} eq 'out') {
180da76c 2434 rule_substitude_action($rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
2dc0a26e 2435 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $hostfw_conf);
1a9978ed
DM
2436 }
2437 };
2438 warn $@ if $@;
f8b12fff 2439 delete $rule->{iface_out};
0bd5f137
AD
2440 }
2441
3bc79f87 2442 # allow standard traffic on cluster network
35d1d6da 2443 if ($localnet && ($ipversion == $localnet_ver)) {
1e9c5070
TW
2444 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 8006", "-j $accept_action"); # PVE API
2445 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 22", "-j $accept_action"); # SSH
2446 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 5900:5999", "-j $accept_action"); # PVE VNC Console
2447 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 3128", "-j $accept_action"); # SPICE Proxy
bfc488f6 2448
1e9c5070
TW
2449 my $corosync_rule = "-p udp --dport 5404:5405";
2450 ruleset_addrule($ruleset, $chain, "-d $localnet $corosync_rule", "-j $accept_action");
2451 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST $corosync_rule", "-j $accept_action");
3bc79f87
DM
2452 }
2453
23e888f8 2454 # implement output policy
63324b09 2455 $policy = $cluster_options->{policy_out} || 'ACCEPT'; # allow everything by default
88c26d5e 2456 ruleset_add_chain_policy($ruleset, $chain, $ipversion, 0, $policy, $loglevel, $accept_action);
6158271d 2457
1e9c5070
TW
2458 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "", "-j PVEFW-HOST-OUT");
2459 ruleset_addrule($ruleset, "PVEFW-INPUT", "", "-j PVEFW-HOST-IN");
9d31b418
AD
2460}
2461
2462sub generate_group_rules {
aedde2c2 2463 my ($ruleset, $cluster_conf, $group, $ipversion) = @_;
9d31b418 2464
c6f5cc88 2465 my $rules = $cluster_conf->{groups}->{$group};
6158271d 2466
b4deedab
DM
2467 if (!$rules) {
2468 warn "no such security group '$group'\n";
2469 $rules = []; # create empty chain
2470 }
2471
3fa83edf 2472 my $chain = "GROUP-${group}-IN";
9d31b418 2473
3fa83edf 2474 ruleset_create_chain($ruleset, $chain);
1e9c5070 2475 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
9d31b418 2476
92e976b3
DM
2477 foreach my $rule (@$rules) {
2478 next if $rule->{type} ne 'in';
7a5a402b 2479 next if !$rule->{enable} || $rule->{errors};
aedde2c2 2480 next if $rule->{ipversion} && $rule->{ipversion} ne $ipversion;
180da76c 2481 rule_substitude_action($rule, { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
2dc0a26e 2482 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf);
9d31b418
AD
2483 }
2484
3fa83edf 2485 $chain = "GROUP-${group}-OUT";
9d31b418 2486
3fa83edf 2487 ruleset_create_chain($ruleset, $chain);
1e9c5070 2488 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
9d31b418 2489
92e976b3
DM
2490 foreach my $rule (@$rules) {
2491 next if $rule->{type} ne 'out';
7a5a402b 2492 next if !$rule->{enable} || $rule->{errors};
aedde2c2 2493 next if $rule->{ipversion} && $rule->{ipversion} ne $ipversion;
92e976b3
DM
2494 # we use PVEFW-SET-ACCEPT-MARK (Instead of ACCEPT) because we need to
2495 # check also other tap rules later
180da76c 2496 rule_substitude_action($rule, { ACCEPT => 'PVEFW-SET-ACCEPT-MARK', REJECT => "PVEFW-reject" });
2dc0a26e 2497 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf);
9d31b418 2498 }
9d31b418
AD
2499}
2500
51bae274
DM
2501my $MAX_NETS = 32;
2502my $valid_netdev_names = {};
2503for (my $i = 0; $i < $MAX_NETS; $i++) {
2504 $valid_netdev_names->{"net$i"} = 1;
2505}
5e1267a5 2506
fe3d79b4
WB
2507sub get_mark_values {
2508 my ($value, $mask) = @_;
2509 $value = hex($value) if $value =~ /^0x/;
2510 $mask = hex($mask) if defined($mask) && $mask =~ /^0x/;
2511 $mask = 0xffffffff if !defined($mask);
2512 return ($value, $mask);
2513}
2514
51bae274 2515sub parse_fw_rule {
a523e057 2516 my ($prefix, $line, $cluster_conf, $fw_conf, $rule_env, $verbose) = @_;
5e1267a5 2517
d4cda423
DM
2518 my $orig_line = $line;
2519
6d9246e7
DM
2520 my $rule = {};
2521
11bac5c2 2522 # we can add single line comments to the end of the rule
6d9246e7
DM
2523 if ($line =~ s/#\s*(.*?)\s*$//) {
2524 $rule->{comment} = decode('utf8', $1);
2525 }
11bac5c2
DM
2526
2527 # we can disable a rule when prefixed with '|'
ea9e5116 2528
6d9246e7 2529 $rule->{enable} = $line =~ s/^\|// ? 0 : 1;
51bae274 2530
dba740a9
DM
2531 $line =~ s/^(\S+)\s+(\S+)\s*// ||
2532 die "unable to parse rule: $line\n";
6d9246e7
DM
2533
2534 $rule->{type} = lc($1);
2535 $rule->{action} = $2;
2536
2537 if ($rule->{type} eq 'in' || $rule->{type} eq 'out') {
2538 if ($rule->{action} =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
2539 $rule->{macro} = $1;
2540 $rule->{action} = $2;
92e976b3 2541 }
51bae274
DM
2542 }
2543
dba740a9
DM
2544 while (length($line)) {
2545 if ($line =~ s/^-i (\S+)\s*//) {
6d9246e7 2546 $rule->{iface} = $1;
dba740a9
DM
2547 next;
2548 }
51bae274 2549
6d9246e7 2550 last if $rule->{type} eq 'group';
51bae274 2551
dba740a9 2552 if ($line =~ s/^-p (\S+)\s*//) {
6d9246e7 2553 $rule->{proto} = $1;
dba740a9
DM
2554 next;
2555 }
6d9246e7 2556
dba740a9 2557 if ($line =~ s/^-dport (\S+)\s*//) {
6d9246e7 2558 $rule->{dport} = $1;
dba740a9
DM
2559 next;
2560 }
6d9246e7 2561
dba740a9 2562 if ($line =~ s/^-sport (\S+)\s*//) {
6d9246e7 2563 $rule->{sport} = $1;
dba740a9
DM
2564 next;
2565 }
2566 if ($line =~ s/^-source (\S+)\s*//) {
6d9246e7 2567 $rule->{source} = $1;
dba740a9
DM
2568 next;
2569 }
2570 if ($line =~ s/^-dest (\S+)\s*//) {
6d9246e7 2571 $rule->{dest} = $1;
dba740a9
DM
2572 next;
2573 }
51bae274 2574
dba740a9
DM
2575 last;
2576 }
ba791b1f 2577
dba740a9 2578 die "unable to parse rule parameters: $line\n" if length($line);
51bae274 2579
a523e057 2580 $rule = verify_rule($rule, $cluster_conf, $fw_conf, $rule_env, 1);
eedcb564
WB
2581 if ($rule->{errors}) {
2582 # The verbose flag really means we're running from the CLI and want
2583 # output on the console - in the other case we really want such errors
2584 # to go into the syslog instead.
2585 my $log = $verbose ? sub { warn @_ } : sub { syslog(err => @_) };
2586 $log->("$prefix - errors in rule parameters: $orig_line\n");
d4cda423 2587 foreach my $p (keys %{$rule->{errors}}) {
eedcb564 2588 $log->(" $p: $rule->{errors}->{$p}\n");
d4cda423
DM
2589 }
2590 }
6d9246e7
DM
2591
2592 return $rule;
51bae274
DM
2593}
2594
c5e8b008
AD
2595sub verify_ethertype {
2596 my ($value) = @_;
2597 my $types = get_etc_ethertypes();
2598 die "unknown ethernet protocol type: $value\n"
2599 if !defined($types->{byname}->{$value}) &&
2600 !defined($types->{byid}->{$value});
2601}
2602
2d404ffc 2603sub parse_vmfw_option {
85c6eaed
DM
2604 my ($line) = @_;
2605
2606 my ($opt, $value);
2607
178a63be
DM
2608 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
2609
74601077 2610 if ($line =~ m/^(enable|dhcp|ndp|radv|macfilter|ipfilter|ips):\s*(0|1)\s*$/i) {
9c6b6efd
DM
2611 $opt = lc($1);
2612 $value = int($2);
178a63be
DM
2613 } elsif ($line =~ m/^(log_level_in|log_level_out):\s*(($loglevels)\s*)?$/i) {
2614 $opt = lc($1);
2615 $value = $2 ? lc($3) : '';
72f63fde 2616 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
85c6eaed
DM
2617 $opt = lc($1);
2618 $value = uc($3);
b47ecc88
AD
2619 } elsif ($line =~ m/^(ips_queues):\s*((\d+)(:(\d+))?)\s*$/i) {
2620 $opt = lc($1);
2621 $value = $2;
c5e8b008
AD
2622 } elsif ($line =~ m/^(layer2_protocols):\s*(((\S+)[,]?)+)\s*$/i) {
2623 $opt = lc($1);
2624 $value = $2;
2625 verify_ethertype($_) foreach split(/\s*,\s*/, $value);
9c6b6efd 2626 } else {
85c6eaed
DM
2627 die "can't parse option '$line'\n"
2628 }
2629
2630 return ($opt, $value);
2631}
2632
2d404ffc
DM
2633sub parse_hostfw_option {
2634 my ($line) = @_;
2635
2636 my ($opt, $value);
2637
2638 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
2639
a83abe93 2640 if ($line =~ m/^(enable|nosmurfs|tcpflags|ndp):\s*(0|1)\s*$/i) {
2d404ffc
DM
2641 $opt = lc($1);
2642 $value = int($2);
178a63be 2643 } elsif ($line =~ m/^(log_level_in|log_level_out|tcp_flags_log_level|smurf_log_level):\s*(($loglevels)\s*)?$/i) {
2d404ffc
DM
2644 $opt = lc($1);
2645 $value = $2 ? lc($3) : '';
28c082a1 2646 } elsif ($line =~ m/^(nf_conntrack_max|nf_conntrack_tcp_timeout_established):\s*(\d+)\s*$/i) {
490cdead
DM
2647 $opt = lc($1);
2648 $value = int($2);
2d404ffc 2649 } else {
2d404ffc
DM
2650 die "can't parse option '$line'\n"
2651 }
2652
2653 return ($opt, $value);
2654}
2655
c6f5cc88
DM
2656sub parse_clusterfw_option {
2657 my ($line) = @_;
2658
2659 my ($opt, $value);
2660
72d055fc 2661 if ($line =~ m/^(enable):\s*(\d+)\s*$/i) {
c6f5cc88
DM
2662 $opt = lc($1);
2663 $value = int($2);
72d055fc
AG
2664 if (($value > 1) && ((time() - $value) > 60)) {
2665 $value = 0
2666 }
63324b09
DM
2667 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
2668 $opt = lc($1);
2669 $value = uc($3);
c6f5cc88 2670 } else {
c6f5cc88
DM
2671 die "can't parse option '$line'\n"
2672 }
2673
2674 return ($opt, $value);
2675}
2676
6c221576
DM
2677sub resolve_alias {
2678 my ($clusterfw_conf, $fw_conf, $cidr) = @_;
2679
6d959e3f 2680 my $alias = lc($cidr);
04f5088f 2681 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
6d959e3f 2682 $e = $clusterfw_conf->{aliases}->{$alias} if !$e && $clusterfw_conf;
6c221576 2683
6d959e3f
DM
2684 die "no such alias '$cidr'\n" if !$e;;
2685
2686 return wantarray ? ($e->{cidr}, $e->{ipversion}) : $e->{cidr};
6c221576
DM
2687}
2688
ae029a88
DM
2689sub parse_ip_or_cidr {
2690 my ($cidr) = @_;
2691
2692 my $ipversion;
2693
2694 if ($cidr =~ m!^(?:$IPV6RE)(/(\d+))?$!) {
2695 $cidr =~ s|/128$||;
2696 $ipversion = 6;
2697 } elsif ($cidr =~ m!^(?:$IPV4RE)(/(\d+))?$!) {
2698 $cidr =~ s|/32$||;
2699 $ipversion = 4;
2700 } else {
2701 die "value does not look like a valid IP address or CIDR network\n";
2702 }
2703
2704 return wantarray ? ($cidr, $ipversion) : $cidr;
2705}
2706
e76a9f53 2707sub parse_alias {
92e1209b
AD
2708 my ($line) = @_;
2709
81d574a7
DM
2710 # we can add single line comments to the end of the line
2711 my $comment = decode('utf8', $1) if $line =~ s/\s*#\s*(.*?)\s*$//;
2712
92e1209b 2713 if ($line =~ m/^(\S+)\s(\S+)$/) {
81d574a7 2714 my ($name, $cidr) = ($1, $2);
ae029a88
DM
2715 my $ipversion;
2716
2717 ($cidr, $ipversion) = parse_ip_or_cidr($cidr);
2718
81d574a7
DM
2719 my $data = {
2720 name => $name,
2721 cidr => $cidr,
70e524eb 2722 ipversion => $ipversion,
81d574a7
DM
2723 };
2724 $data->{comment} = $comment if $comment;
2725 return $data;
92e1209b
AD
2726 }
2727
81d574a7 2728 return undef;
92e1209b
AD
2729}
2730
e5cd1ee0 2731sub generic_fw_config_parser {
1210ae94 2732 my ($filename, $fh, $verbose, $cluster_conf, $empty_conf, $rule_env) = @_;
5e1267a5 2733
51bae274
DM
2734 my $section;
2735 my $group;
2736
1210ae94 2737 my $res = $empty_conf;
6158271d 2738
51bae274
DM
2739 while (defined(my $line = <$fh>)) {
2740 next if $line =~ m/^#/;
2741 next if $line =~ m/^\s*$/;
2742
c8c534f7
DM
2743 chomp $line;
2744
961b4928
DM
2745 my $linenr = $fh->input_line_number();
2746 my $prefix = "$filename (line $linenr)";
2747
1210ae94 2748 if ($empty_conf->{options} && ($line =~ m/^\[options\]$/i)) {
c6f5cc88
DM
2749 $section = 'options';
2750 next;
2751 }
2752
1210ae94 2753 if ($empty_conf->{aliases} && ($line =~ m/^\[aliases\]$/i)) {
92e1209b
AD
2754 $section = 'aliases';
2755 next;
2756 }
2757
1210ae94 2758 if ($empty_conf->{groups} && ($line =~ m/^\[group\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i)) {
c6f5cc88 2759 $section = 'groups';
92e976b3 2760 $group = lc($1);
0d22acb3 2761 my $comment = $2;
351052d1
DM
2762 eval {
2763 die "security group name too long\n" if length($group) > $max_group_name_length;
2764 die "invalid security group name '$group'\n" if $group !~ m/^${security_group_name_pattern}$/;
2765 };
2766 if (my $err = $@) {
2767 ($section, $group, $comment) = undef;
2768 warn "$prefix: $err";
2769 next;
2770 }
2771
c85c87f9 2772 $res->{$section}->{$group} = [];
649e4d57
DM
2773 $res->{group_comments}->{$group} = decode('utf8', $comment)
2774 if $comment;
51bae274
DM
2775 next;
2776 }
34cdedfa 2777
1210ae94 2778 if ($empty_conf->{rules} && ($line =~ m/^\[rules\]$/i)) {
c6f5cc88
DM
2779 $section = 'rules';
2780 next;
2781 }
cbb5d6f3 2782
1210ae94 2783 if ($empty_conf->{ipset} && ($line =~ m/^\[ipset\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i)) {
34cdedfa
AD
2784 $section = 'ipset';
2785 $group = lc($1);
d72c631c 2786 my $comment = $2;
351052d1
DM
2787 eval {
2788 die "ipset name too long\n" if length($group) > $max_ipset_name_length;
2789 die "invalid ipset name '$group'\n" if $group !~ m/^${ipset_name_pattern}$/;
2790 };
2791 if (my $err = $@) {
2792 ($section, $group, $comment) = undef;
2793 warn "$prefix: $err";
2794 next;
2795 }
2796
c85c87f9 2797 $res->{$section}->{$group} = [];
e34d0e58 2798 $res->{ipset_comments}->{$group} = decode('utf8', $comment)
649e4d57 2799 if $comment;
34cdedfa
AD
2800 next;
2801 }
2802
c6f5cc88 2803 if (!$section) {
cbb5d6f3 2804 warn "$prefix: skip line - no section\n";
51bae274
DM
2805 next;
2806 }
2807
c6f5cc88
DM
2808 if ($section eq 'options') {
2809 eval {
1210ae94
DM
2810 my ($opt, $value);
2811 if ($rule_env eq 'cluster') {
2812 ($opt, $value) = parse_clusterfw_option($line);
2813 } elsif ($rule_env eq 'host') {
2814 ($opt, $value) = parse_hostfw_option($line);
2815 } else {
2816 ($opt, $value) = parse_vmfw_option($line);
2817 }
c6f5cc88
DM
2818 $res->{options}->{$opt} = $value;
2819 };
2820 warn "$prefix: $@" if $@;
92e1209b
AD
2821 } elsif ($section eq 'aliases') {
2822 eval {
e76a9f53 2823 my $data = parse_alias($line);
81d574a7 2824 $res->{aliases}->{lc($data->{name})} = $data;
92e1209b
AD
2825 };
2826 warn "$prefix: $@" if $@;
c6f5cc88
DM
2827 } elsif ($section eq 'rules') {
2828 my $rule;
1210ae94 2829 eval { $rule = parse_fw_rule($prefix, $line, $cluster_conf, $res, $rule_env, $verbose); };
c6f5cc88
DM
2830 if (my $err = $@) {
2831 warn "$prefix: $err";
2832 next;
2833 }
2834 push @{$res->{$section}}, $rule;
2835 } elsif ($section eq 'groups') {
34cdedfa 2836 my $rule;
1210ae94 2837 eval { $rule = parse_fw_rule($prefix, $line, $cluster_conf, undef, 'group', $verbose); };
34cdedfa
AD
2838 if (my $err = $@) {
2839 warn "$prefix: $err";
2840 next;
2841 }
3f95d14a 2842 push @{$res->{$section}->{$group}}, $rule;
3f95d14a 2843 } elsif ($section eq 'ipset') {
9d6f90e6
DM
2844 # we can add single line comments to the end of the rule
2845 my $comment = decode('utf8', $1) if $line =~ s/#\s*(.*?)\s*$//;
2846
30f1b100 2847 $line =~ m/^(\!)?\s*(\S+)\s*$/;
2a052ee3 2848 my $nomatch = $1;
9d6f90e6 2849 my $cidr = $2;
d46b1ef6
DM
2850 my $errors;
2851
2852 if ($nomatch && !$feature_ipset_nomatch) {
2853 $errors->{nomatch} = "nomatch not supported by kernel";
2854 }
2a052ee3 2855
4803b296
DM
2856 eval {
2857 if ($cidr =~ m/^${ip_alias_pattern}$/) {
2858 resolve_alias($cluster_conf, $res, $cidr); # make sure alias exists
2859 } else {
ae029a88 2860 $cidr = parse_ip_or_cidr($cidr);
92e1209b 2861 }
4803b296
DM
2862 };
2863 if (my $err = $@) {
c8c534f7 2864 chomp $err;
d46b1ef6 2865 $errors->{cidr} = $err;
2a052ee3 2866 }
2a052ee3 2867
b14db52f
WB
2868 if ($cidr =~ m!/0+$!) {
2869 $errors->{cidr} = "a zero prefix is not allowed in ipset entries\n";
2870 }
2871
e34d0e58 2872 my $entry = { cidr => $cidr };
9d6f90e6
DM
2873 $entry->{nomatch} = 1 if $nomatch;
2874 $entry->{comment} = $comment if $comment;
d46b1ef6 2875 $entry->{errors} = $errors if $errors;
e34d0e58 2876
c8c534f7 2877 if ($verbose && $errors) {
9a3061c7 2878 warn "$prefix - errors in ipset '$group': $line\n";
c8c534f7
DM
2879 foreach my $p (keys %{$errors}) {
2880 warn " $p: $errors->{$p}\n";
2881 }
2882 }
2883
9d6f90e6 2884 push @{$res->{$section}->{$group}}, $entry;
1210ae94
DM
2885 } else {
2886 warn "$prefix: skip line - unknown section\n";
2887 next;
51bae274 2888 }
5e1267a5
DM
2889 }
2890
2891 return $res;
2892}
2893
e5cd1ee0 2894sub parse_hostfw_config {
1210ae94
DM
2895 my ($filename, $fh, $cluster_conf, $verbose) = @_;
2896
2897 my $empty_conf = { rules => [], options => {}};
2898
e5cd1ee0 2899 return generic_fw_config_parser($filename, $fh, $verbose, $cluster_conf, $empty_conf, 'host');
1210ae94
DM
2900}
2901
e5cd1ee0 2902sub parse_vmfw_config {
1210ae94
DM
2903 my ($filename, $fh, $cluster_conf, $rule_env, $verbose) = @_;
2904
2905 my $empty_conf = {
2906 rules => [],
2907 options => {},
2908 aliases => {},
2909 ipset => {} ,
2910 ipset_comments => {},
2911 };
2912
e5cd1ee0 2913 return generic_fw_config_parser($filename, $fh, $verbose, $cluster_conf, $empty_conf, $rule_env);
1210ae94
DM
2914}
2915
e5cd1ee0 2916sub parse_clusterfw_config {
1210ae94
DM
2917 my ($filename, $fh, $verbose) = @_;
2918
2919 my $section;
2920 my $group;
2921
2922 my $empty_conf = {
2923 rules => [],
2924 options => {},
2925 aliases => {},
2926 groups => {},
2927 group_comments => {},
2928 ipset => {} ,
2929 ipset_comments => {},
2930 };
2931
e5cd1ee0 2932 return generic_fw_config_parser($filename, $fh, $verbose, $empty_conf, $empty_conf, 'cluster');
1210ae94
DM
2933}
2934
06320eb0
DM
2935sub run_locked {
2936 my ($code, @param) = @_;
2937
2938 my $timeout = 10;
2939
2940 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
2941
2942 die $@ if $@;
2943
2944 return $res;
2945}
2946
5e1267a5
DM
2947sub read_local_vm_config {
2948
5e1267a5 2949 my $qemu = {};
3b4882dc 2950 my $lxc = {};
5e1267a5 2951
fdefeeab 2952 my $vmdata = { qemu => $qemu, lxc => $lxc };
5e1267a5 2953
c8301d63
DM
2954 my $vmlist = PVE::Cluster::get_vmlist();
2955 return $vmdata if !$vmlist || !$vmlist->{ids};
2956 my $ids = $vmlist->{ids};
2957
2958 foreach my $vmid (keys %$ids) {
2959 next if !$vmid; # skip VE0
2960 my $d = $ids->{$vmid};
2961 next if !$d->{node} || $d->{node} ne $nodename;
2962 next if !$d->{type};
fdefeeab 2963 if ($d->{type} eq 'qemu') {
d9fee004 2964 if ($have_qemu_server) {
b5a16dd3 2965 my $cfspath = PVE::QemuConfig->cfs_config_path($vmid);
d9fee004
DM
2966 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
2967 $qemu->{$vmid} = $conf;
2968 }
c8301d63 2969 }
3b4882dc
AG
2970 } elsif ($d->{type} eq 'lxc') {
2971 if ($have_lxc) {
a7c85d56 2972 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
3b4882dc
AG
2973 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
2974 $lxc->{$vmid} = $conf;
2975 }
2976 }
2977 }
5e1267a5 2978 }
d9fee004 2979
5e1267a5
DM
2980 return $vmdata;
2981};
2982
e7b35711 2983sub load_vmfw_conf {
a523e057 2984 my ($cluster_conf, $rule_env, $vmid, $dir, $verbose) = @_;
e7b35711
DM
2985
2986 my $vmfw_conf = {};
2987
21053409 2988 $dir = $pvefw_conf_dir if !defined($dir);
8aef5177
DM
2989
2990 my $filename = "$dir/$vmid.fw";
e7b35711 2991 if (my $fh = IO::File->new($filename, O_RDONLY)) {
e5cd1ee0 2992 $vmfw_conf = parse_vmfw_config($filename, $fh, $cluster_conf, $rule_env, $verbose);
708ba714 2993 $vmfw_conf->{vmid} = $vmid;
e7b35711
DM
2994 }
2995
2996 return $vmfw_conf;
2997}
2998
464f933e 2999my $format_rules = sub {
dba740a9 3000 my ($rules, $allow_iface) = @_;
464f933e
DM
3001
3002 my $raw = '';
3003
3004 foreach my $rule (@$rules) {
c14dacdf 3005 if ($rule->{type} eq 'in' || $rule->{type} eq 'out' || $rule->{type} eq 'group') {
464f933e
DM
3006 $raw .= '|' if defined($rule->{enable}) && !$rule->{enable};
3007 $raw .= uc($rule->{type});
7ca36671
DM
3008 if ($rule->{macro}) {
3009 $raw .= " $rule->{macro}($rule->{action})";
3010 } else {
3011 $raw .= " " . $rule->{action};
3012 }
dba740a9
DM
3013 if ($allow_iface && $rule->{iface}) {
3014 $raw .= " -i $rule->{iface}";
3015 }
c14dacdf
DM
3016
3017 if ($rule->{type} ne 'group') {
dba740a9
DM
3018 $raw .= " -source $rule->{source}" if $rule->{source};
3019 $raw .= " -dest $rule->{dest}" if $rule->{dest};
3020 $raw .= " -p $rule->{proto}" if $rule->{proto};
3021 $raw .= " -dport $rule->{dport}" if $rule->{dport};
3022 $raw .= " -sport $rule->{sport}" if $rule->{sport};
c14dacdf
DM
3023 }
3024
cbb5d6f3 3025 $raw .= " # " . encode('utf8', $rule->{comment})
464f933e
DM
3026 if $rule->{comment} && $rule->{comment} !~ m/^\s*$/;
3027 $raw .= "\n";
3028 } else {
c14dacdf 3029 die "unknown rule type '$rule->{type}'";
464f933e
DM
3030 }
3031 }
3032
3033 return $raw;
3034};
3035
3036my $format_options = sub {
68c90e21
DM
3037 my ($options) = @_;
3038
3039 my $raw = '';
464f933e
DM
3040
3041 $raw .= "[OPTIONS]\n\n";
3042 foreach my $opt (keys %$options) {
3043 $raw .= "$opt: $options->{$opt}\n";
3044 }
3045 $raw .= "\n";
68c90e21
DM
3046
3047 return $raw;
464f933e
DM
3048};
3049
0d5f0a0f
DM
3050my $format_aliases = sub {
3051 my ($aliases) = @_;
3052
3053 my $raw = '';
3054
3055 $raw .= "[ALIASES]\n\n";
3056 foreach my $k (keys %$aliases) {
81d574a7
DM
3057 my $e = $aliases->{$k};
3058 $raw .= "$e->{name} $e->{cidr}";
3059 $raw .= " # " . encode('utf8', $e->{comment})
3060 if $e->{comment} && $e->{comment} !~ m/^\s*$/;
3061 $raw .= "\n";
0d5f0a0f
DM
3062 }
3063 $raw .= "\n";
3064
3065 return $raw;
3066};
3067
1210ae94
DM
3068my $format_ipsets = sub {
3069 my ($fw_conf) = @_;
3070
9d6f90e6
DM
3071 my $raw = '';
3072
1210ae94
DM
3073 foreach my $ipset (sort keys %{$fw_conf->{ipset}}) {
3074 if (my $comment = $fw_conf->{ipset_comments}->{$ipset}) {
3075 my $utf8comment = encode('utf8', $comment);
3076 $raw .= "[IPSET $ipset] # $utf8comment\n\n";
3077 } else {
3078 $raw .= "[IPSET $ipset]\n\n";
3079 }
3080 my $options = $fw_conf->{ipset}->{$ipset};
6e299ae3 3081
1210ae94
DM
3082 my $nethash = {};
3083 foreach my $entry (@$options) {
3084 $nethash->{$entry->{cidr}} = $entry;
3085 }
3086
3087 foreach my $cidr (sort keys %$nethash) {
3088 my $entry = $nethash->{$cidr};
3089 my $line = $entry->{nomatch} ? '!' : '';
3090 $line .= $entry->{cidr};
3091 $line .= " # " . encode('utf8', $entry->{comment})
3092 if $entry->{comment} && $entry->{comment} !~ m/^\s*$/;
3093 $raw .= "$line\n";
3094 }
3095
3096 $raw .= "\n";
9d6f90e6 3097 }
e34d0e58 3098
9d6f90e6
DM
3099 return $raw;
3100};
3101
464f933e
DM
3102sub save_vmfw_conf {
3103 my ($vmid, $vmfw_conf) = @_;
3104
3105 my $raw = '';
3106
3107 my $options = $vmfw_conf->{options};
89ea63c8 3108 $raw .= &$format_options($options) if $options && scalar(keys %$options);
cbb5d6f3 3109
e76a9f53 3110 my $aliases = $vmfw_conf->{aliases};
89ea63c8 3111 $raw .= &$format_aliases($aliases) if $aliases && scalar(keys %$aliases);
e76a9f53 3112
89ea63c8 3113 $raw .= &$format_ipsets($vmfw_conf) if $vmfw_conf->{ipset};
1210ae94 3114
8824b2f0 3115 my $rules = $vmfw_conf->{rules} || [];
89ea63c8 3116 if ($rules && scalar(@$rules)) {
464f933e
DM
3117 $raw .= "[RULES]\n\n";
3118 $raw .= &$format_rules($rules, 1);
3119 $raw .= "\n";
3120 }
3121
21053409 3122 my $filename = "$pvefw_conf_dir/$vmid.fw";
c32e04e6
FG
3123 if ($raw) {
3124 mkdir $pvefw_conf_dir;
3125 PVE::Tools::file_set_contents($filename, $raw);
3126 } else {
3127 unlink $filename;
3128 }
464f933e
DM
3129}
3130
edee9035
AG
3131sub remove_vmfw_conf {
3132 my ($vmid) = @_;
3133
3134 my $vmfw_conffile = "$pvefw_conf_dir/$vmid.fw";
3135
3136 unlink $vmfw_conffile;
3137}
3138
5471ff7c
AG
3139sub clone_vmfw_conf {
3140 my ($vmid, $newid) = @_;
3141
3142 my $sourcevm_conffile = "$pvefw_conf_dir/$vmid.fw";
3143 my $clonevm_conffile = "$pvefw_conf_dir/$newid.fw";
3144
3145 if (-f $clonevm_conffile) {
3146 unlink $clonevm_conffile;
3147 }
3148 if (-f $sourcevm_conffile) {
3149 my $data = PVE::Tools::file_get_contents($sourcevm_conffile);
3150 PVE::Tools::file_set_contents($clonevm_conffile, $data);
3151 }
3152}
3153
6fc63ffd 3154sub read_vm_firewall_configs {
a523e057 3155 my ($cluster_conf, $vmdata, $dir, $verbose) = @_;
8aef5177 3156
6fc63ffd 3157 my $vmfw_configs = {};
c8301d63 3158
b6b8e6ad 3159 foreach my $vmid (keys %{$vmdata->{qemu}}) {
a523e057 3160 my $vmfw_conf = load_vmfw_conf($cluster_conf, 'vm', $vmid, $dir, $verbose);
b6b8e6ad
DM
3161 next if !$vmfw_conf->{options}; # skip if file does not exists
3162 $vmfw_configs->{$vmid} = $vmfw_conf;
3163 }
3b4882dc
AG
3164 foreach my $vmid (keys %{$vmdata->{lxc}}) {
3165 my $vmfw_conf = load_vmfw_conf($cluster_conf, 'ct', $vmid, $dir, $verbose);
3166 next if !$vmfw_conf->{options}; # skip if file does not exists
3167 $vmfw_configs->{$vmid} = $vmfw_conf;
3168 }
5e1267a5 3169
6fc63ffd 3170 return $vmfw_configs;
5e1267a5
DM
3171}
3172
2d404ffc
DM
3173sub get_option_log_level {
3174 my ($options, $k) = @_;
3175
3176 my $v = $options->{$k};
178a63be 3177 $v = $default_log_level if !defined($v);
2d404ffc
DM
3178
3179 return undef if $v eq '' || $v eq 'nolog';
3180
3181 $v = $log_level_hash->{$v} if defined($log_level_hash->{$v});
3182
3183 return $v if ($v >= 0) && ($v <= 7);
3184
3185 warn "unknown log level ($k = '$v')\n";
3186
3187 return undef;
3188}
3189
d8f2505e 3190sub generate_std_chains {
db8a955f
DM
3191 my ($ruleset, $options, $ipversion) = @_;
3192
3193 my $std_chains = $pve_std_chains->{$ipversion} || die "internal error";
cbb5d6f3 3194
2d404ffc 3195 my $loglevel = get_option_log_level($options, 'smurf_log_level');
044409e5
TW
3196 my $chain = 'PVEFW-smurflog';
3197 if ( $std_chains->{$chain} ) {
3198 foreach my $r (@{$std_chains->{$chain}}) {
3199 $r->{log} = $loglevel;
3200 }
db8a955f 3201 }
2d404ffc
DM
3202
3203 # same as shorewall logflags action.
3204 $loglevel = get_option_log_level($options, 'tcp_flags_log_level');
782c4cde 3205 $chain = 'PVEFW-logflags';
044409e5
TW
3206 if ( $std_chains->{$chain} ) {
3207 foreach my $r (@{$std_chains->{$chain}}) {
3208 $r->{log} = $loglevel;
3209 }
3210 }
d8f2505e 3211
db8a955f 3212 foreach my $chain (keys %$std_chains) {
d8f2505e 3213 ruleset_create_chain($ruleset, $chain);
db8a955f 3214 foreach my $rule (@{$std_chains->{$chain}}) {
d8f2505e 3215 if (ref($rule)) {
88c26d5e 3216 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule);
d8f2505e 3217 } else {
044409e5 3218 die "rule $rule as string - should not happen";
d8f2505e
DM
3219 }
3220 }
3221 }
3222}
3223
34cdedfa 3224sub generate_ipset_chains {
74601077 3225 my ($ipset_ruleset, $clusterfw_conf, $fw_conf, $device_ips, $ipsets) = @_;
34cdedfa 3226
74601077 3227 foreach my $ipset (keys %{$ipsets}) {
34cdedfa 3228
74601077 3229 my $options = $ipsets->{$ipset};
34cdedfa 3230
ebf72e49
WB
3231 if ($device_ips && $ipset =~ /^ipfilter-(net\d+)$/) {
3232 if (my $ips = $device_ips->{$1}) {
3233 $options = [@$options, @$ips];
3234 }
3235 }
3236
88c26d5e
DM
3237 # remove duplicates
3238 my $nethash = {};
3239 foreach my $entry (@$options) {
3240 next if $entry->{errors}; # skip entries with errors
3241 eval {
3242 my ($cidr, $ver);
3243 if ($entry->{cidr} =~ m/^${ip_alias_pattern}$/) {
3244 ($cidr, $ver) = resolve_alias($clusterfw_conf, $fw_conf, $entry->{cidr});
3245 } else {
3246 ($cidr, $ver) = parse_ip_or_cidr($entry->{cidr});
3247 }
3248 #http://backreference.org/2013/03/01/ipv6-address-normalization/
3249 if ($ver == 6) {
e0a9139f
WB
3250 # ip_compress_address takes an address only, no CIDR
3251 my ($addr, $prefix_len) = ($cidr =~ m@^([^/]*)(/.*)?$@);
3252 $cidr = lc(Net::IP::ip_compress_address($addr, 6));
3253 $cidr .= $prefix_len if defined($prefix_len);
88c26d5e
DM
3254 $cidr =~ s|/128$||;
3255 } else {
3256 $cidr =~ s|/32$||;
3257 }
34cdedfa 3258
88c26d5e
DM
3259 $nethash->{$ver}->{$cidr} = { cidr => $cidr, nomatch => $entry->{nomatch} };
3260 };
3261 warn $@ if $@;
3262 }
6d959e3f 3263
88c26d5e
DM
3264 foreach my $ipversion (4, 6) {
3265 my $data = $nethash->{$ipversion};
30f1b100 3266
88c26d5e 3267 my $name = compute_ipset_chain_name($fw_conf->{vmid}, $ipset, $ipversion);
6d959e3f 3268
88c26d5e
DM
3269 my $hashsize = scalar(@$options);
3270 if ($hashsize <= 64) {
3271 $hashsize = 64;
3272 } else {
3273 $hashsize = round_powerof2($hashsize);
3274 }
6d959e3f 3275
88c26d5e 3276 my $family = $ipversion == "6" ? "inet6" : "inet";
30f1b100 3277
88c26d5e 3278 $ipset_ruleset->{$name} = ["create $name hash:net family $family hashsize $hashsize maxelem $hashsize"];
6d959e3f 3279
88c26d5e
DM
3280 foreach my $cidr (sort keys %$data) {
3281 my $entry = $data->{$cidr};
6d959e3f 3282
88c26d5e
DM
3283 my $cmd = "add $name $cidr";
3284 if ($entry->{nomatch}) {
3285 if ($feature_ipset_nomatch) {
3286 push @{$ipset_ruleset->{$name}}, "$cmd nomatch";
3287 } else {
3288 warn "ignore !$cidr - nomatch not supported by kernel\n";
3289 }
6d959e3f 3290 } else {
88c26d5e 3291 push @{$ipset_ruleset->{$name}}, $cmd;
6d959e3f 3292 }
9d6f90e6 3293 }
9d6f90e6 3294 }
34cdedfa 3295 }
2a052ee3
AD
3296}
3297
3298sub round_powerof2 {
dd7a13fd 3299 my ($int) = @_;
2a052ee3 3300
dd7a13fd
DM
3301 $int--;
3302 $int |= $int >> $_ foreach (1,2,4,8,16);
3303 return ++$int;
34cdedfa
AD
3304}
3305
fca39c2c 3306sub load_clusterfw_conf {
d4cda423 3307 my ($filename, $verbose) = @_;
8aef5177
DM
3308
3309 $filename = $clusterfw_conf_filename if !defined($filename);
530c005e 3310
fca39c2c 3311 my $cluster_conf = {};
8aef5177 3312 if (my $fh = IO::File->new($filename, O_RDONLY)) {
e5cd1ee0 3313 $cluster_conf = parse_clusterfw_config($filename, $fh, $verbose);
51bae274 3314 }
5e1267a5 3315
fca39c2c 3316 return $cluster_conf;
e5d76bde
DM
3317}
3318
fca39c2c
DM
3319sub save_clusterfw_conf {
3320 my ($cluster_conf) = @_;
9c7e0858
DM
3321
3322 my $raw = '';
9c7e0858 3323
c6f5cc88 3324 my $options = $cluster_conf->{options};
89ea63c8 3325 $raw .= &$format_options($options) if $options && scalar(keys %$options);
9c7e0858 3326
0d5f0a0f 3327 my $aliases = $cluster_conf->{aliases};
89ea63c8 3328 $raw .= &$format_aliases($aliases) if $aliases && scalar(keys %$aliases);
e34d0e58 3329
89ea63c8 3330 $raw .= &$format_ipsets($cluster_conf) if $cluster_conf->{ipset};
1210ae94 3331
c6f5cc88 3332 my $rules = $cluster_conf->{rules};
89ea63c8 3333 if ($rules && scalar(@$rules)) {
c6f5cc88 3334 $raw .= "[RULES]\n\n";
63c91681 3335 $raw .= &$format_rules($rules, 1);
c6f5cc88
DM
3336 $raw .= "\n";
3337 }
3338
89ea63c8
DM
3339 if ($cluster_conf->{groups}) {
3340 foreach my $group (sort keys %{$cluster_conf->{groups}}) {
3341 my $rules = $cluster_conf->{groups}->{$group};
3342 if (my $comment = $cluster_conf->{group_comments}->{$group}) {
3343 my $utf8comment = encode('utf8', $comment);
3344 $raw .= "[group $group] # $utf8comment\n\n";
3345 } else {
3346 $raw .= "[group $group]\n\n";
3347 }
0d22acb3 3348
89ea63c8
DM
3349 $raw .= &$format_rules($rules, 0);
3350 $raw .= "\n";
3351 }
9c7e0858
DM
3352 }
3353
c32e04e6
FG
3354 if ($raw) {
3355 mkdir $pvefw_conf_dir;
3356 PVE::Tools::file_set_contents($clusterfw_conf_filename, $raw);
3357 } else {
3358 unlink $clusterfw_conf_filename;
3359 }
9c7e0858
DM
3360}
3361
8b27beb9 3362sub load_hostfw_conf {
a523e057 3363 my ($cluster_conf, $filename, $verbose) = @_;
8aef5177
DM
3364
3365 $filename = $hostfw_conf_filename if !defined($filename);
8b27beb9
DM
3366
3367 my $hostfw_conf = {};
8aef5177 3368 if (my $fh = IO::File->new($filename, O_RDONLY)) {
e5cd1ee0 3369 $hostfw_conf = parse_hostfw_config($filename, $fh, $cluster_conf, $verbose);
8b27beb9
DM
3370 }
3371 return $hostfw_conf;
3372}
3373
63c91681
DM
3374sub save_hostfw_conf {
3375 my ($hostfw_conf) = @_;
3376
3377 my $raw = '';
3378
3379 my $options = $hostfw_conf->{options};
89ea63c8 3380 $raw .= &$format_options($options) if $options && scalar(keys %$options);
cbb5d6f3 3381
63c91681 3382 my $rules = $hostfw_conf->{rules};
89ea63c8 3383 if ($rules && scalar(@$rules)) {
63c91681
DM
3384 $raw .= "[RULES]\n\n";
3385 $raw .= &$format_rules($rules, 1);
3386 $raw .= "\n";
3387 }
3388
c32e04e6
FG
3389 if ($raw) {
3390 PVE::Tools::file_set_contents($hostfw_conf_filename, $raw);
3391 } else {
3392 unlink $hostfw_conf_filename;
3393 }
63c91681
DM
3394}
3395
e5d76bde 3396sub compile {
d4cda423 3397 my ($cluster_conf, $hostfw_conf, $vmdata, $verbose) = @_;
3dfa8a7f 3398
8aef5177
DM
3399 my $vmfw_configs;
3400
cfd7cd9c
TW
3401 # fixme: once we read standard chains from config this needs to be put in test/standard cases below
3402 $pve_std_chains = dclone($pve_std_chains_conf);
3403
8aef5177
DM
3404 if ($vmdata) { # test mode
3405 my $testdir = $vmdata->{testdir} || die "no test directory specified";
3406 my $filename = "$testdir/cluster.fw";
d4cda423 3407 $cluster_conf = load_clusterfw_conf($filename, $verbose);
8aef5177
DM
3408
3409 $filename = "$testdir/host.fw";
a523e057 3410 $hostfw_conf = load_hostfw_conf($cluster_conf, $filename, $verbose);
8aef5177 3411
a523e057 3412 $vmfw_configs = read_vm_firewall_configs($cluster_conf, $vmdata, $testdir, $verbose);
8aef5177 3413 } else { # normal operation
d4cda423 3414 $cluster_conf = load_clusterfw_conf(undef, $verbose) if !$cluster_conf;
8aef5177 3415
a523e057 3416 $hostfw_conf = load_hostfw_conf($cluster_conf, undef, $verbose) if !$hostfw_conf;
8aef5177
DM
3417
3418 $vmdata = read_local_vm_config();
a523e057 3419 $vmfw_configs = read_vm_firewall_configs($cluster_conf, $vmdata, undef, $verbose);
8aef5177 3420 }
3dfa8a7f 3421
147dd882 3422 return ({},{},{}) if !$cluster_conf->{options}->{enable};
9268573a 3423
525778d7
DM
3424 my $localnet;
3425 if ($cluster_conf->{aliases}->{local_network}) {
3426 $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
3427 } else {
afcd29b3
DM
3428 my $localnet_ver;
3429 ($localnet, $localnet_ver) = parse_ip_or_cidr(local_network() || '127.0.0.0/8');
3430
3431 $cluster_conf->{aliases}->{local_network} = {
3432 name => 'local_network', cidr => $localnet, ipversion => $localnet_ver };
525778d7
DM
3433 }
3434
3435 push @{$cluster_conf->{ipset}->{management}}, { cidr => $localnet };
bfc488f6 3436
147dd882
WB
3437 my $ruleset = compile_iptables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, 4, $verbose);
3438 my $rulesetv6 = compile_iptables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, 6, $verbose);
c5e8b008 3439 my $ebtables_ruleset = compile_ebtables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $verbose);
147dd882
WB
3440 my $ipset_ruleset = compile_ipsets($cluster_conf, $vmfw_configs, $vmdata);
3441
c5e8b008 3442 return ($ruleset, $ipset_ruleset, $rulesetv6, $ebtables_ruleset);
147dd882
WB
3443}
3444
3445sub compile_iptables_filter {
3446 my ($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $ipversion, $verbose) = @_;
085fd492 3447
3fa83edf
DM
3448 my $ruleset = {};
3449
dec84fcd
DM
3450 ruleset_create_chain($ruleset, "PVEFW-INPUT");
3451 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
5b1df9a0 3452
fadb13dd 3453 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
e34d0e58 3454
8b27beb9 3455 my $hostfw_options = $hostfw_conf->{options} || {};
fadb13dd 3456
88733a74
AD
3457 # fixme: what log level should we use here?
3458 my $loglevel = get_option_log_level($hostfw_options, "log_level_out");
3459
097820b0 3460 ruleset_chain_add_conn_filters($ruleset, "PVEFW-FORWARD", "ACCEPT");
88733a74 3461
e2943485 3462 ruleset_create_chain($ruleset, "PVEFW-FWBR-IN");
88c26d5e 3463 ruleset_chain_add_input_filters($ruleset, "PVEFW-FWBR-IN", $ipversion, $hostfw_options, $cluster_conf, $loglevel);
e2943485 3464
1e9c5070 3465 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-in fwln+", "-j PVEFW-FWBR-IN");
e2943485
DM
3466
3467 ruleset_create_chain($ruleset, "PVEFW-FWBR-OUT");
1e9c5070 3468 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-out fwln+", "-j PVEFW-FWBR-OUT");
e2943485 3469
db8a955f 3470 generate_std_chains($ruleset, $hostfw_options, $ipversion);
fadb13dd 3471
6d2ab017 3472 my $hostfw_enable = !(defined($hostfw_options->{enable}) && ($hostfw_options->{enable} == 0));
2d404ffc 3473
35d1d6da 3474 if ($hostfw_enable) {
aedde2c2 3475 eval { enable_host_firewall($ruleset, $hostfw_conf, $cluster_conf, $ipversion); };
1a9978ed
DM
3476 warn $@ if $@; # just to be sure - should not happen
3477 }
3fa83edf 3478
6158271d 3479 # generate firewall rules for QEMU VMs
0a0ba19e 3480 foreach my $vmid (sort keys %{$vmdata->{qemu}}) {
1a9978ed
DM
3481 eval {
3482 my $conf = $vmdata->{qemu}->{$vmid};
3483 my $vmfw_conf = $vmfw_configs->{$vmid};
3484 return if !$vmfw_conf;
1a9978ed 3485
0a0ba19e 3486 foreach my $netid (sort keys %$conf) {
1a9978ed
DM
3487 next if $netid !~ m/^net(\d+)$/;
3488 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3489 next if !$net->{firewall};
3490 my $iface = "tap${vmid}i$1";
3491
3492 my $macaddr = $net->{macaddr};
3493 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
84870b1a 3494 $vmfw_conf, $vmid, 'IN', $ipversion);
1a9978ed 3495 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
84870b1a 3496 $vmfw_conf, $vmid, 'OUT', $ipversion);
1a9978ed
DM
3497 }
3498 };
3499 warn $@ if $@; # just to be sure - should not happen
3fa83edf 3500 }
c8301d63 3501
3b4882dc 3502 # generate firewall rules for LXC containers
0a0ba19e 3503 foreach my $vmid (sort keys %{$vmdata->{lxc}}) {
3b4882dc
AG
3504 eval {
3505 my $conf = $vmdata->{lxc}->{$vmid};
3506 my $vmfw_conf = $vmfw_configs->{$vmid};
3507 return if !$vmfw_conf;
3508
3b4882dc 3509 if ($vmfw_conf->{options}->{enable}) {
0a0ba19e 3510 foreach my $netid (sort keys %$conf) {
3b4882dc 3511 next if $netid !~ m/^net(\d+)$/;
a7c85d56 3512 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
3b4882dc
AG
3513 next if !$net->{firewall};
3514 my $iface = "veth${vmid}i$1";
3515 my $macaddr = $net->{hwaddr};
3516 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3517 $vmfw_conf, $vmid, 'IN', $ipversion);
3518 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3519 $vmfw_conf, $vmid, 'OUT', $ipversion);
3520 }
3521 }
3522 };
3523 warn $@ if $@; # just to be sure - should not happen
3524 }
3525
097820b0 3526 if(ruleset_chain_exist($ruleset, "PVEFW-IPS")){
1e9c5070 3527 ruleset_insertrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED", "-j PVEFW-IPS");
097820b0
AD
3528 }
3529
147dd882
WB
3530 return $ruleset;
3531}
3532
ebf72e49
WB
3533sub mac_to_linklocal {
3534 my ($macaddr) = @_;
3535 my @parts = split(/:/, $macaddr);
3536 # The standard link local address uses the fe80::/64 prefix with the
3537 # modified EUI-64 identifier derived from the MAC address by flipping the
3538 # universal/local bit and inserting FF:FE in the middle.
3539 # See RFC 4291.
3540 $parts[0] = sprintf("%02x", hex($parts[0]) ^ 0x02);
3541 my @meui64 = (@parts[0,1,2], 'ff', 'fe', @parts[3,4,5]);
3542 return "fe80::$parts[0]$parts[1]:$parts[2]FF:FE$parts[3]:$parts[4]$parts[5]";
3543}
3544
147dd882
WB
3545sub compile_ipsets {
3546 my ($cluster_conf, $vmfw_configs, $vmdata) = @_;
3547
3548 my $localnet;
3549 if ($cluster_conf->{aliases}->{local_network}) {
3550 $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
3551 } else {
3552 my $localnet_ver;
3553 ($localnet, $localnet_ver) = parse_ip_or_cidr(local_network() || '127.0.0.0/8');
3554
3555 $cluster_conf->{aliases}->{local_network} = {
3556 name => 'local_network', cidr => $localnet, ipversion => $localnet_ver };
3557 }
3558
3559 push @{$cluster_conf->{ipset}->{management}}, { cidr => $localnet };
3560
3561
3562 my $ipset_ruleset = {};
3563
3564 # generate ipsets for QEMU VMs
3565 foreach my $vmid (keys %{$vmdata->{qemu}}) {
3566 eval {
3567 my $conf = $vmdata->{qemu}->{$vmid};
3568 my $vmfw_conf = $vmfw_configs->{$vmid};
3569 return if !$vmfw_conf;
3570
74601077
WB
3571 # When the 'ipfilter' option is enabled every device for which there
3572 # is no 'ipfilter-netX' ipset defiend gets an implicit empty default
3573 # ipset.
3574 # The reason is that ipfilter ipsets are always filled with standard
3575 # IPv6 link-local filters.
3576 my $ipsets = $vmfw_conf->{ipset};
3577 my $implicit_sets = {};
3578
ebf72e49
WB
3579 my $device_ips = {};
3580 foreach my $netid (keys %$conf) {
3581 next if $netid !~ m/^net(\d+)$/;
3582 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3583 next if !$net->{firewall};
3584
74601077
WB
3585 if ($vmfw_conf->{options}->{ipfilter} && !$ipsets->{"ipfilter-$netid"}) {
3586 $implicit_sets->{"ipfilter-$netid"} = [];
3587 }
3588
ebf72e49
WB
3589 my $macaddr = $net->{macaddr};
3590 my $linklocal = mac_to_linklocal($macaddr);
3591 $device_ips->{$netid} = [
3592 { cidr => $linklocal },
3593 { cidr => 'fe80::/10', nomatch => 1 }
3594 ];
3595 }
3596
74601077
WB
3597 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $ipsets);
3598 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $implicit_sets);
147dd882
WB
3599 };
3600 warn $@ if $@; # just to be sure - should not happen
3601 }
3602
3603 # generate firewall rules for LXC containers
3604 foreach my $vmid (keys %{$vmdata->{lxc}}) {
aa229652
WB
3605 eval {
3606 my $conf = $vmdata->{lxc}->{$vmid};
3607 my $vmfw_conf = $vmfw_configs->{$vmid};
3608 return if !$vmfw_conf;
147dd882 3609
74601077
WB
3610 # When the 'ipfilter' option is enabled every device for which there
3611 # is no 'ipfilter-netX' ipset defiend gets an implicit empty default
3612 # ipset.
3613 # The reason is that ipfilter ipsets are always filled with standard
383fe679
WB
3614 # IPv6 link-local filters, as well as the IP addresses configured
3615 # for the container.
74601077
WB
3616 my $ipsets = $vmfw_conf->{ipset};
3617 my $implicit_sets = {};
3618
ebf72e49
WB
3619 my $device_ips = {};
3620 foreach my $netid (keys %$conf) {
3621 next if $netid !~ m/^net(\d+)$/;
a7c85d56 3622 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
ebf72e49
WB
3623 next if !$net->{firewall};
3624
74601077
WB
3625 if ($vmfw_conf->{options}->{ipfilter} && !$ipsets->{"ipfilter-$netid"}) {
3626 $implicit_sets->{"ipfilter-$netid"} = [];
3627 }
3628
ebf72e49
WB
3629 my $macaddr = $net->{hwaddr};
3630 my $linklocal = mac_to_linklocal($macaddr);
383fe679 3631 my $set = $device_ips->{$netid} = [
ebf72e49
WB
3632 { cidr => $linklocal },
3633 { cidr => 'fe80::/10', nomatch => 1 }
3634 ];
37ef1ce1 3635 if (defined($net->{ip}) && $net->{ip} =~ m!^($IPV4RE)(?:/\d+)?$!) {
383fe679
WB
3636 push @$set, { cidr => $1 };
3637 }
37ef1ce1 3638 if (defined($net->{ip6}) && $net->{ip6} =~ m!^($IPV6RE)(?:/\d+)?$!) {
383fe679
WB
3639 push @$set, { cidr => $1 };
3640 }
ebf72e49
WB
3641 }
3642
74601077
WB
3643 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $ipsets);
3644 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $implicit_sets);
aa229652
WB
3645 };
3646 warn $@ if $@; # just to be sure - should not happen
147dd882
WB
3647 }
3648
74601077 3649 generate_ipset_chains($ipset_ruleset, undef, $cluster_conf, undef, $cluster_conf->{ipset});
27083984 3650
147dd882 3651 return $ipset_ruleset;
3fa83edf
DM
3652}
3653
c5e8b008
AD
3654sub compile_ebtables_filter {
3655 my ($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $verbose) = @_;
3656
3657 return ({}, {}) if !$cluster_conf->{options}->{enable};
3658
3659 my $ruleset = {};
3660
3661 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
3662
3663
3664 ruleset_create_chain($ruleset, "PVEFW-FWBR-OUT");
3665 #for ipv4 and ipv6, check macaddress in iptables, so we use conntrack 'ESTABLISHED', to speedup rules
3666 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-p IPv4', '-j ACCEPT');
3667 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-p IPv6', '-j ACCEPT');
3668 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-o fwln+', '-j PVEFW-FWBR-OUT');
3669
3670 # generate firewall rules for QEMU VMs
3671 foreach my $vmid (keys %{$vmdata->{qemu}}) {
3672 eval {
3673 my $conf = $vmdata->{qemu}->{$vmid};
3674 my $vmfw_conf = $vmfw_configs->{$vmid};
3675 return if !$vmfw_conf;
3676
3677 foreach my $netid (keys %$conf) {
3678 next if $netid !~ m/^net(\d+)$/;
3679 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3680 next if !$net->{firewall};
3681 my $iface = "tap${vmid}i$1";
3682 my $macaddr = $net->{macaddr};
3683
3684 generate_tap_layer2filter($ruleset, $iface, $macaddr, $vmfw_conf, $vmid);
3685
3686 }
3687 };
3688 warn $@ if $@; # just to be sure - should not happen
3689 }
3690
3691 # generate firewall rules for LXC containers
3692 foreach my $vmid (keys %{$vmdata->{lxc}}) {
3693 eval {
3694 my $conf = $vmdata->{lxc}->{$vmid};
3695
3696 my $vmfw_conf = $vmfw_configs->{$vmid};
3697 return if !$vmfw_conf || !$vmfw_conf->{options}->{enable};
3698
3699 foreach my $netid (keys %$conf) {
3700 next if $netid !~ m/^net(\d+)$/;
3701 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
3702 next if !$net->{firewall};
3703 my $iface = "veth${vmid}i$1";
3704 my $macaddr = $net->{hwaddr};
3705 generate_tap_layer2filter($ruleset, $iface, $macaddr, $vmfw_conf, $vmid);
3706 }
3707 };
3708 warn $@ if $@; # just to be sure - should not happen
3709 }
3710
3711 return $ruleset;
3712}
3713
3714sub generate_tap_layer2filter {
3715 my ($ruleset, $iface, $macaddr, $vmfw_conf, $vmid) = @_;
3716 my $options = $vmfw_conf->{options};
3717
3718 my $tapchain = $iface."-OUT";
3719
3720 # ebtables remove zeros from mac pairs
3721 $macaddr =~ s/0([0-9a-f])/$1/ig;
3722 $macaddr = lc($macaddr);
3723
3724 ruleset_create_chain($ruleset, $tapchain);
3725
3726 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
3727 ruleset_addrule($ruleset, $tapchain, "-s ! $macaddr", '-j DROP');
3728 }
3729
3730 if (defined($options->{layer2_protocols})){
3731 foreach my $proto (split(/,/, $options->{layer2_protocols})) {
3732 ruleset_addrule($ruleset, $tapchain, "-p $proto", '-j ACCEPT');
3733 }
3734 ruleset_addrule($ruleset, $tapchain, '', "-j DROP");
3735 } else {
3736 ruleset_addrule($ruleset, $tapchain, '', '-j ACCEPT');
3737 }
3738
3739 ruleset_addrule($ruleset, 'PVEFW-FWBR-OUT', "-i $iface", "-j $tapchain");
3740}
3741
3fa83edf 3742sub get_ruleset_status {
4bd0a9c4 3743 my ($ruleset, $active_chains, $digest_fn, $verbose) = @_;
3fa83edf
DM
3744
3745 my $statushash = {};
3746
3747 foreach my $chain (sort keys %$ruleset) {
4bd0a9c4 3748 my $sig = &$digest_fn($ruleset->{$chain});
9bf7d929 3749
3fa83edf
DM
3750 $statushash->{$chain}->{sig} = $sig;
3751
3752 my $oldsig = $active_chains->{$chain};
3753 if (!defined($oldsig)) {
3754 $statushash->{$chain}->{action} = 'create';
3755 } else {
3756 if ($oldsig eq $sig) {
3757 $statushash->{$chain}->{action} = 'exists';
3758 } else {
3759 $statushash->{$chain}->{action} = 'update';
3760 }
3761 }
3762 print "$statushash->{$chain}->{action} $chain ($sig)\n" if $verbose;
3763 foreach my $cmd (@{$ruleset->{$chain}}) {
3764 print "\t$cmd\n" if $verbose;
3765 }
3766 }
3767
3768 foreach my $chain (sort keys %$active_chains) {
3769 if (!defined($ruleset->{$chain})) {
3770 my $sig = $active_chains->{$chain};
3771 $statushash->{$chain}->{action} = 'delete';
3772 $statushash->{$chain}->{sig} = $sig;
3773 print "delete $chain ($sig)\n" if $verbose;
3774 }
6158271d 3775 }
2a052ee3 3776
3fa83edf
DM
3777 return $statushash;
3778}
3779
3fa83edf
DM
3780sub print_sig_rule {
3781 my ($chain, $sig) = @_;
3782
09d5f68e
DM
3783 # We just use this to store a SHA1 checksum used to detect changes
3784 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
b6360c3f
DM
3785}
3786
df7cb349 3787sub get_ruleset_cmdlist {
17da5c0f 3788 my ($ruleset, $verbose, $iptablescmd) = @_;
3fa83edf 3789
3fa83edf 3790 my $cmdlist = "*filter\n"; # we pass this to iptables-restore;
cbb5d6f3 3791
17da5c0f 3792 my ($active_chains, $hooks) = iptables_get_chains($iptablescmd);
4bd0a9c4 3793 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest, $verbose);
3fa83edf
DM
3794
3795 # create missing chains first
3796 foreach my $chain (sort keys %$ruleset) {
3797 my $stat = $statushash->{$chain};
3798 die "internal error" if !$stat;
3799 next if $stat->{action} ne 'create';
886aba9c 3800
3fa83edf
DM
3801 $cmdlist .= ":$chain - [0:0]\n";
3802 }
3803
4bd0a9c4 3804 foreach my $h (qw(INPUT OUTPUT FORWARD)) {
55fad3b7
DM
3805 my $chain = "PVEFW-$h";
3806 if ($ruleset->{$chain} && !$hooks->{$h}) {
3807 $cmdlist .= "-A $h -j $chain\n";
4bd0a9c4 3808 }
3fa83edf
DM
3809 }
3810
3811 foreach my $chain (sort keys %$ruleset) {
3812 my $stat = $statushash->{$chain};
3813 die "internal error" if !$stat;
3814
3815 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
3816 $cmdlist .= "-F $chain\n";
3817 foreach my $cmd (@{$ruleset->{$chain}}) {
3818 $cmdlist .= "$cmd\n";
3819 }
3820 $cmdlist .= print_sig_rule($chain, $stat->{sig});
3821 } elsif ($stat->{action} eq 'delete') {
f5d28682 3822 die "internal error"; # this should not happen
3fa83edf
DM
3823 } elsif ($stat->{action} eq 'exists') {
3824 # do nothing
3825 } else {
3826 die "internal error - unknown status '$stat->{action}'";
3827 }
3828 }
3829
f5d28682
DM
3830 foreach my $chain (keys %$statushash) {
3831 next if $statushash->{$chain}->{action} ne 'delete';
3832 $cmdlist .= "-F $chain\n";
3833 }
3834 foreach my $chain (keys %$statushash) {
3835 next if $statushash->{$chain}->{action} ne 'delete';
fadb13dd
DM
3836 next if $chain eq 'PVEFW-INPUT';
3837 next if $chain eq 'PVEFW-OUTPUT';
3838 next if $chain eq 'PVEFW-FORWARD';
f5d28682
DM
3839 $cmdlist .= "-X $chain\n";
3840 }
3841
3f95d14a 3842 my $changes = $cmdlist ne "*filter\n" ? 1 : 0;
4bd0a9c4 3843
3fa83edf
DM
3844 $cmdlist .= "COMMIT\n";
3845
3f95d14a 3846 return wantarray ? ($cmdlist, $changes) : $cmdlist;
6b9f68a2
DM
3847}
3848
151c209e
AD
3849sub get_ebtables_cmdlist {
3850 my ($ruleset, $verbose) = @_;
3851
3852 my $changes = 0;
3853 my $cmdlist = "*filter\n";
3854
3855 my ($active_chains, $hooks) = ebtables_get_chains();
3856 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest, $verbose);
3857
3858 # create chains first
3859 foreach my $chain (sort keys %$ruleset) {
3860 my $stat = $statushash->{$chain};
3861 die "internal error" if !$stat;
3862 $cmdlist .= ":$chain ACCEPT\n";
3863 }
3864
3865 if ($ruleset->{FORWARD}) {
3866 $cmdlist .= "-A FORWARD -j PVEFW-FORWARD\n";
3867 }
3868
3869 foreach my $chain (sort keys %$ruleset) {
3870 my $stat = $statushash->{$chain};
3871 die "internal error" if !$stat;
3872 $changes = 1 if ($stat->{action} ne 'exists');
3873
3874 foreach my $cmd (@{$ruleset->{$chain}}) {
3875 $cmdlist .= "$cmd\n";
3876 }
3877 }
3878
3879 return wantarray ? ($cmdlist, $changes) : $cmdlist;
3880}
3881
34cdedfa 3882sub get_ipset_cmdlist {
dd7a13fd 3883 my ($ruleset, $verbose) = @_;
34cdedfa
AD
3884
3885 my $cmdlist = "";
3886
dd7a13fd
DM
3887 my $delete_cmdlist = "";
3888
4bd0a9c4
DM
3889 my $active_chains = ipset_get_chains();
3890 my $statushash = get_ruleset_status($ruleset, $active_chains, \&ipset_chain_digest, $verbose);
34cdedfa 3891
e34d0e58 3892 # remove stale _swap chains
30f1b100
DM
3893 foreach my $chain (keys %$active_chains) {
3894 if ($chain =~ m/^PVEFW-\S+_swap$/) {
3895 $cmdlist .= "destroy $chain\n";
3896 }
3897 }
3898
c69cf614 3899 foreach my $chain (keys %$ruleset) {
c69cf614
DM
3900 my $stat = $statushash->{$chain};
3901 die "internal error" if !$stat;
3902
3903 if ($stat->{action} eq 'create') {
3904 foreach my $cmd (@{$ruleset->{$chain}}) {
3905 $cmdlist .= "$cmd\n";
3906 }
3907 }
3908 }
3909
3910 foreach my $chain (keys %$ruleset) {
6d959e3f
DM
3911 my $stat = $statushash->{$chain};
3912 die "internal error" if !$stat;
34cdedfa 3913
dd7a13fd
DM
3914 if ($stat->{action} eq 'update') {
3915 my $chain_swap = $chain."_swap";
cbb5d6f3 3916
dd7a13fd
DM
3917 foreach my $cmd (@{$ruleset->{$chain}}) {
3918 $cmd =~ s/$chain/$chain_swap/;
3919 $cmdlist .= "$cmd\n";
34cdedfa 3920 }
dd7a13fd
DM
3921 $cmdlist .= "swap $chain_swap $chain\n";
3922 $cmdlist .= "flush $chain_swap\n";
3923 $cmdlist .= "destroy $chain_swap\n";
2a052ee3 3924 }
dd7a13fd 3925 }
3f95d14a 3926
88c26d5e 3927 # the remove unused chains
c69cf614 3928 foreach my $chain (keys %$statushash) {
dd7a13fd 3929 next if $statushash->{$chain}->{action} ne 'delete';
2a052ee3 3930
dd7a13fd
DM
3931 $delete_cmdlist .= "flush $chain\n";
3932 $delete_cmdlist .= "destroy $chain\n";
34cdedfa
AD
3933 }
3934
dd7a13fd 3935 my $changes = ($cmdlist || $delete_cmdlist) ? 1 : 0;
cbb5d6f3 3936
dd7a13fd 3937 return ($cmdlist, $delete_cmdlist, $changes);
34cdedfa
AD
3938}
3939
6b9f68a2 3940sub apply_ruleset {
151c209e 3941 my ($ruleset, $hostfw_conf, $ipset_ruleset, $rulesetv6, $ebtables_ruleset, $verbose) = @_;
6b9f68a2
DM
3942
3943 enable_bridge_firewall();
3944
cbb5d6f3 3945 my ($ipset_create_cmdlist, $ipset_delete_cmdlist, $ipset_changes) =
9a462317 3946 get_ipset_cmdlist($ipset_ruleset, $verbose);
6b9f68a2 3947
81a0bf43 3948 my ($cmdlist, $changes) = get_ruleset_cmdlist($ruleset, $verbose);
17da5c0f 3949 my ($cmdlistv6, $changesv6) = get_ruleset_cmdlist($rulesetv6, $verbose, "ip6tables");
151c209e 3950 my ($ebtables_cmdlist, $ebtables_changes) = get_ebtables_cmdlist($ebtables_ruleset, $verbose);
2a052ee3 3951
81a0bf43
DM
3952 if ($verbose) {
3953 if ($ipset_changes) {
3954 print "ipset changes:\n";
3955 print $ipset_create_cmdlist if $ipset_create_cmdlist;
3956 print $ipset_delete_cmdlist if $ipset_delete_cmdlist;
3957 }
3f95d14a 3958
81a0bf43
DM
3959 if ($changes) {
3960 print "iptables changes:\n";
3961 print $cmdlist;
3962 }
17da5c0f
AD
3963
3964 if ($changesv6) {
3965 print "ip6tables changes:\n";
3966 print $cmdlistv6;
3967 }
151c209e
AD
3968
3969 if ($ebtables_changes) {
3970 print "ebtables changes:\n";
3971 print $ebtables_cmdlist;
3972 }
81a0bf43 3973 }
3fa83edf 3974
259db1e6
DM
3975 my $tmpfile = "$pve_fw_status_dir/ipsetcmdlist1";
3976 PVE::Tools::file_set_contents($tmpfile, $ipset_create_cmdlist || '');
3977
2a052ee3 3978 ipset_restore_cmdlist($ipset_create_cmdlist);
34cdedfa 3979
259db1e6
DM
3980 $tmpfile = "$pve_fw_status_dir/ip4cmdlist";
3981 PVE::Tools::file_set_contents($tmpfile, $cmdlist || '');
3982
3fa83edf 3983 iptables_restore_cmdlist($cmdlist);
259db1e6
DM
3984
3985 $tmpfile = "$pve_fw_status_dir/ip6cmdlist";
3986 PVE::Tools::file_set_contents($tmpfile, $cmdlistv6 || '');
3987
17da5c0f 3988 ip6tables_restore_cmdlist($cmdlistv6);
3fa83edf 3989
259db1e6
DM
3990 $tmpfile = "$pve_fw_status_dir/ipsetcmdlist2";
3991 PVE::Tools::file_set_contents($tmpfile, $ipset_delete_cmdlist || '');
3992
dd7a13fd 3993 ipset_restore_cmdlist($ipset_delete_cmdlist) if $ipset_delete_cmdlist;
2a052ee3 3994
151c209e
AD
3995 ebtables_restore_cmdlist($ebtables_cmdlist);
3996
3997 $tmpfile = "$pve_fw_status_dir/ebtablescmdlist";
3998 PVE::Tools::file_set_contents($tmpfile, $ebtables_cmdlist || '');
3999
6158271d 4000 # test: re-read status and check if everything is up to date
4bd0a9c4 4001 my $active_chains = iptables_get_chains();
81a0bf43 4002 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest, 0);
3fa83edf
DM
4003
4004 my $errors;
4005 foreach my $chain (sort keys %$ruleset) {
4006 my $stat = $statushash->{$chain};
4007 if ($stat->{action} ne 'exists') {
4008 warn "unable to update chain '$chain'\n";
4009 $errors = 1;
4010 }
4011 }
b6360c3f 4012
17da5c0f
AD
4013 my $active_chainsv6 = iptables_get_chains("ip6tables");
4014 my $statushashv6 = get_ruleset_status($rulesetv6, $active_chainsv6, \&iptables_chain_digest, 0);
4015
4016 foreach my $chain (sort keys %$rulesetv6) {
4017 my $stat = $statushashv6->{$chain};
4018 if ($stat->{action} ne 'exists') {
4019 warn "unable to update chain '$chain'\n";
4020 $errors = 1;
4021 }
4022 }
4023
151c209e
AD
4024 my $active_ebtables_chains = ebtables_get_chains();
4025 my $ebtables_statushash = get_ruleset_status($ebtables_ruleset, $active_ebtables_chains, \&iptables_chain_digest, 0);
4026
4027 foreach my $chain (sort keys %$ebtables_ruleset) {
4028 my $stat = $ebtables_statushash->{$chain};
4029 if ($stat->{action} ne 'exists') {
4030 warn "ebtables : unable to update chain '$chain'\n";
4031 $errors = 1;
4032 }
4033 }
4034
3fa83edf 4035 die "unable to apply firewall changes\n" if $errors;
46a2ac1f
AD
4036
4037 update_nf_conntrack_max($hostfw_conf);
4038
4039 update_nf_conntrack_tcp_timeout_established($hostfw_conf);
4040
b6360c3f
DM
4041}
4042
490cdead
DM
4043sub update_nf_conntrack_max {
4044 my ($hostfw_conf) = @_;
4045
4046 my $max = 65536; # reasonable default
4047
4048 my $options = $hostfw_conf->{options} || {};
4049
4050 if (defined($options->{nf_conntrack_max}) && ($options->{nf_conntrack_max} > $max)) {
4051 $max = $options->{nf_conntrack_max};
4052 $max = int(($max+ 8191)/8192)*8192; # round to multiples of 8192
4053 }
4054
4055 my $filename_nf_conntrack_max = "/proc/sys/net/nf_conntrack_max";
4056 my $filename_hashsize = "/sys/module/nf_conntrack/parameters/hashsize";
4057
4058 my $current = int(PVE::Tools::file_read_firstline($filename_nf_conntrack_max) || $max);
4059
4060 if ($current != $max) {
4061 my $hashsize = int($max/4);
4062 PVE::ProcFSTools::write_proc_entry($filename_hashsize, $hashsize);
4063 PVE::ProcFSTools::write_proc_entry($filename_nf_conntrack_max, $max);
4064 }
4065}
4066
28c082a1
AD
4067sub update_nf_conntrack_tcp_timeout_established {
4068 my ($hostfw_conf) = @_;
4069
4070 my $options = $hostfw_conf->{options} || {};
4071
4072 my $value = defined($options->{nf_conntrack_tcp_timeout_established}) ? $options->{nf_conntrack_tcp_timeout_established} : 432000;
4073
4074 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established", $value);
4075}
4076
c4a2e5ae
DM
4077sub remove_pvefw_chains {
4078
7b7b2654
AD
4079 PVE::Firewall::remove_pvefw_chains_iptables("iptables");
4080 PVE::Firewall::remove_pvefw_chains_iptables("ip6tables");
4081 PVE::Firewall::remove_pvefw_chains_ipset();
4082
4083}
4084
4085sub remove_pvefw_chains_iptables {
4086 my ($iptablescmd) = @_;
4087
4088 my ($chash, $hooks) = iptables_get_chains($iptablescmd);
c4a2e5ae
DM
4089 my $cmdlist = "*filter\n";
4090
4091 foreach my $h (qw(INPUT OUTPUT FORWARD)) {
4092 if ($hooks->{$h}) {
4093 $cmdlist .= "-D $h -j PVEFW-$h\n";
4094 }
4095 }
cbb5d6f3 4096
c4a2e5ae
DM
4097 foreach my $chain (keys %$chash) {
4098 $cmdlist .= "-F $chain\n";
4099 }
4100
4101 foreach my $chain (keys %$chash) {
4102 $cmdlist .= "-X $chain\n";
4103 }
4104 $cmdlist .= "COMMIT\n";
4105
7b7b2654
AD
4106 if($iptablescmd eq "ip6tables") {
4107 ip6tables_restore_cmdlist($cmdlist);
4108 } else {
4109 iptables_restore_cmdlist($cmdlist);
4110 }
4111}
4112
4113sub remove_pvefw_chains_ipset {
55fad3b7
DM
4114
4115 my $ipset_chains = ipset_get_chains();
4116
7b7b2654 4117 my $cmdlist = "";
55fad3b7
DM
4118
4119 foreach my $chain (keys %$ipset_chains) {
88c26d5e
DM
4120 $cmdlist .= "flush $chain\n";
4121 $cmdlist .= "destroy $chain\n";
55fad3b7
DM
4122 }
4123
7b7b2654 4124 ipset_restore_cmdlist($cmdlist) if $cmdlist;
c4a2e5ae
DM
4125}
4126
8b453a09
DM
4127sub init {
4128 my $cluster_conf = load_clusterfw_conf();
4129 my $cluster_options = $cluster_conf->{options};
4130 my $enable = $cluster_options->{enable};
4131
4132 return if !$enable;
4133
4134 # load required modules here
4135}
4136
6b9f68a2 4137sub update {
6b9f68a2 4138 my $code = sub {
3dfa8a7f
DM
4139
4140 my $cluster_conf = load_clusterfw_conf();
4141 my $cluster_options = $cluster_conf->{options};
4142
55fad3b7 4143 if (!$cluster_options->{enable}) {
b22130d3 4144 PVE::Firewall::remove_pvefw_chains();
3dfa8a7f
DM
4145 return;
4146 }
4147
50f9a28d 4148 my $hostfw_conf = load_hostfw_conf($cluster_conf);
3dfa8a7f 4149
c5e8b008 4150 my ($ruleset, $ipset_ruleset, $rulesetv6, $ebtables_ruleset) = compile($cluster_conf, $hostfw_conf);
490cdead 4151
151c209e 4152 apply_ruleset($ruleset, $hostfw_conf, $ipset_ruleset, $rulesetv6, $ebtables_ruleset);
6b9f68a2
DM
4153 };
4154
4155 run_locked($code);
4156}
4157
b6360c3f 41581;