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