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