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