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