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